1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735
|
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------
#pragma warning disable 1634, 1691
namespace System.Workflow.Activities
{
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using System.Drawing;
using System.Globalization;
using System.Reflection;
using System.Runtime;
using System.ServiceModel;
using System.ServiceModel.Channels;
using System.Workflow.ComponentModel;
using System.Workflow.ComponentModel.Compiler;
using System.Workflow.ComponentModel.Design;
using System.Workflow.Runtime.Hosting;
[SR2Description(SR2DescriptionAttribute.SendActivityDescription)]
[SR2Category(SR2CategoryAttribute.Standard)]
[DesignerAttribute(typeof(SendActivityDesigner), typeof(IDesigner))]
[ToolboxBitmap(typeof(SendActivity), "Design.Resources.SendActivity.png")]
[ActivityValidator(typeof(SendActivityValidator))]
[Obsolete("The System.Workflow.* types are deprecated. Instead, please use the new types from System.Activities.*")]
public sealed class SendActivity : Activity
{
[SuppressMessage("Microsoft.Security", "CA2104:DoNotDeclareReadOnlyMutableReferenceTypes")]
public static readonly DependencyProperty AfterResponseEvent =
DependencyProperty.Register("AfterResponse",
typeof(EventHandler<SendActivityEventArgs>),
typeof(SendActivity));
[SuppressMessage("Microsoft.Security", "CA2104:DoNotDeclareReadOnlyMutableReferenceTypes")]
public static readonly DependencyProperty BeforeSendEvent =
DependencyProperty.Register("BeforeSend",
typeof(EventHandler<SendActivityEventArgs>),
typeof(SendActivity));
[SuppressMessage("Microsoft.Security", "CA2104:DoNotDeclareReadOnlyMutableReferenceTypes")]
public static readonly DependencyProperty CustomAddressProperty =
DependencyProperty.Register("CustomAddress",
typeof(string),
typeof(SendActivity),
new PropertyMetadata(null));
public const string ReturnValuePropertyName = "(ReturnValue)";
[SuppressMessage("Microsoft.Security", "CA2104:DoNotDeclareReadOnlyMutableReferenceTypes")]
internal static readonly DependencyProperty ChannelTokenProperty =
DependencyProperty.Register("ChannelToken",
typeof(ChannelToken),
typeof(SendActivity),
new PropertyMetadata(null, DependencyPropertyOptions.Metadata));
[SuppressMessage("Microsoft.Security", "CA2104:DoNotDeclareReadOnlyMutableReferenceTypes")]
internal static readonly DependencyProperty ParameterBindingsProperty =
DependencyProperty.Register("ParameterBindings",
typeof(WorkflowParameterBindingCollection),
typeof(SendActivity),
new PropertyMetadata(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.ReadOnly));
[SuppressMessage("Microsoft.Security", "CA2104:DoNotDeclareReadOnlyMutableReferenceTypes")]
internal static readonly DependencyProperty ServiceOperationInfoProperty =
DependencyProperty.Register("ServiceOperationInfo",
typeof(TypedOperationInfo),
typeof(SendActivity),
new PropertyMetadata(DependencyPropertyOptions.Metadata));
[NonSerialized]
private SendOperationInfoHelper operationHelper;
public SendActivity()
{
base.SetReadOnlyPropertyValue(SendActivity.ParameterBindingsProperty,
new WorkflowParameterBindingCollection(this));
}
public SendActivity(String name)
: base(name)
{
base.SetReadOnlyPropertyValue(SendActivity.ParameterBindingsProperty,
new WorkflowParameterBindingCollection(this));
}
[SuppressMessage("Microsoft.Naming", "CA1713:EventsShouldNotHaveBeforeOrAfterPrefix")]
[Browsable(true)]
[SR2Category(SR2CategoryAttribute.Handlers)]
[SR2Description(SR2DescriptionAttribute.Send_AfterResponse_Description)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
public event EventHandler<SendActivityEventArgs> AfterResponse
{
add
{
base.AddHandler(SendActivity.AfterResponseEvent, value);
}
remove
{
base.RemoveHandler(SendActivity.AfterResponseEvent, value);
}
}
[SuppressMessage("Microsoft.Naming", "CA1713:EventsShouldNotHaveBeforeOrAfterPrefix")]
[Browsable(true)]
[SR2Category(SR2CategoryAttribute.Handlers)]
[SR2Description(SR2DescriptionAttribute.Send_BeforeSend_Description)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
public event EventHandler<SendActivityEventArgs> BeforeSend
{
add
{
base.AddHandler(SendActivity.BeforeSendEvent, value);
}
remove
{
base.RemoveHandler(SendActivity.BeforeSendEvent, value);
}
}
[DefaultValue(null)]
[MergableProperty(false)]
[RefreshProperties(RefreshProperties.All)]
[SR2Category(SR2CategoryAttribute.Activity)]
[SR2Description(SR2DescriptionAttribute.Send_ChannelToken_Description)]
public ChannelToken ChannelToken
{
get
{
return (ChannelToken) this.GetValue(SendActivity.ChannelTokenProperty);
}
set
{
this.SetValue(SendActivity.ChannelTokenProperty, value);
}
}
[Browsable(false)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public IDictionary<string, string> Context
{
get
{
if (this.ServiceOperationInfo == null)
{
#pragma warning suppress 56503
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
new InvalidOperationException(SR2.GetString(SR2.Error_ServiceOperationInfoNotSpecified, this.Name)));
}
return SendActivity.GetContext(this, this.ChannelToken, this.ServiceOperationInfo.ContractType);
}
set
{
if (this.ServiceOperationInfo == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
new InvalidOperationException(SR2.GetString(SR2.Error_ServiceOperationInfoNotSpecified, this.Name)));
}
SendActivity.SetContext(this, this.ChannelToken, this.ServiceOperationInfo.ContractType, value);
}
}
[DefaultValue(null)]
[SR2Category(SR2CategoryAttribute.Activity)]
[SR2Description(SR2DescriptionAttribute.Send_CustomAddress_Description)]
public string CustomAddress
{
get
{
return (string) GetValue(CustomAddressProperty);
}
set
{
SetValue(CustomAddressProperty, value);
}
}
[Browsable(false)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
public WorkflowParameterBindingCollection ParameterBindings
{
get
{
return ((WorkflowParameterBindingCollection)(base.GetValue(SendActivity.ParameterBindingsProperty)));
}
}
[Browsable(true)]
[SR2Category(SR2CategoryAttribute.Activity)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)]
[SR2Description(SR2DescriptionAttribute.Send_OperationInfo_Description)]
public TypedOperationInfo ServiceOperationInfo
{
get
{
return ((TypedOperationInfo)(base.GetValue(SendActivity.ServiceOperationInfoProperty)));
}
set
{
OperationInfoBase currentValue = ((OperationInfoBase)(base.GetValue(SendActivity.ServiceOperationInfoProperty)));
if (value != null && currentValue != value)
{
DependencyProperty ParentDependencyObjectProperty =
DependencyProperty.FromName("ParentDependencyObject", typeof(DependencyObject));
Activity currentParent = value.GetValue(ParentDependencyObjectProperty) as Activity;
if (currentParent != null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument(
"value",
SR2.GetString(SR2.Error_OperationIsAlreadyAssociatedWithActivity,
value,
currentParent.QualifiedName));
}
if (currentValue != null)
{
currentValue.SetValue(ParentDependencyObjectProperty, null);
}
value.SetValue(ParentDependencyObjectProperty, this);
}
if (this.DesignMode)
{
Activity rootActivity = this.RootActivity;
rootActivity.RemoveProperty(DynamicContractTypeBuilder.DynamicContractTypesProperty);
}
base.SetValue(SendActivity.ServiceOperationInfoProperty, value);
}
}
SendOperationInfoHelper OperationHelper
{
get
{
if (this.operationHelper == null)
{
if (this.UserData.Contains(typeof(SendOperationInfoHelper)))
{
this.operationHelper = this.UserData[typeof(SendOperationInfoHelper)] as SendOperationInfoHelper;
}
}
if (this.operationHelper == null)
{
this.operationHelper = new SendOperationInfoHelper(this.Site, this);
this.UserData[typeof(SendOperationInfoHelper)] = this.operationHelper;
}
return this.operationHelper;
}
}
public static IDictionary<string, string> GetContext(Activity activity,
ChannelToken endpoint,
Type contractType)
{
if (activity == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("activity");
}
if (endpoint == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("endpoint");
}
if (contractType == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("contractType");
}
return GetContext(activity, endpoint.Name, endpoint.OwnerActivityName, contractType);
}
public static IDictionary<string, string> GetContext(Activity activity,
string endpointName,
string ownerActivityName,
Type contractType)
{
if (activity == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("activity");
}
if (string.IsNullOrEmpty(endpointName))
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument("endpointName",
SR2.GetString(SR2.Error_ArgumentValueNullOrEmptyString));
}
if (contractType == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("contractType");
}
LogicalChannel logicalChannel = ChannelToken.GetLogicalChannel(activity, endpointName, ownerActivityName, contractType);
if (logicalChannel != null)
{
return logicalChannel.Context;
}
return null;
}
public static void SetContext(Activity activity,
ChannelToken endpoint,
Type contractType,
IDictionary<string, string> context)
{
if (activity == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("activity");
}
if (endpoint == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("endpoint");
}
if (contractType == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("contractType");
}
SetContext(activity, endpoint.Name, endpoint.OwnerActivityName, contractType, context);
}
public static void SetContext(Activity activity,
string endpointName,
string ownerActivityName,
Type contractType,
IDictionary<string, string> context)
{
if (activity == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("activity");
}
if (string.IsNullOrEmpty(endpointName))
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument("endpointName",
SR2.GetString(SR2.Error_ArgumentValueNullOrEmptyString));
}
if (contractType == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("contractType");
}
LogicalChannel logicalChannel = ChannelToken.GetLogicalChannel(activity, endpointName, ownerActivityName, contractType);
if (logicalChannel != null)
{
if (context != null)
{
logicalChannel.Context = context;
}
else
{
logicalChannel.Context = ContextMessageProperty.Empty.Context;
}
}
}
protected internal override ActivityExecutionStatus Execute(ActivityExecutionContext executionContext)
{
TypedOperationInfo serviceOperationInfo = this.ServiceOperationInfo;
if (serviceOperationInfo == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
new InvalidOperationException(SR2.GetString(SR2.Error_ServiceOperationInfoNotSpecified, this.Name)));
}
MethodInfo methodInfo = serviceOperationInfo.GetMethodInfo(executionContext);
if (methodInfo == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
new InvalidOperationException(SR2.GetString(SR2.Error_MethodInfoNotAvailable, this.Name)));
}
ChannelToken channelToken = this.ChannelToken;
LogicalChannel logicalChannel = ChannelToken.Register(this, channelToken, serviceOperationInfo.ContractType);
if (!logicalChannel.Initialized)
{
logicalChannel.Initialize(channelToken.EndpointName, this.CustomAddress);
}
using (ChannelManagerService.ChannelTicket leasedChannel = ChannelManagerService.Take(executionContext, this.WorkflowInstanceId, logicalChannel))
{
using (OperationContextScope scope = new OperationContextScope((IContextChannel) leasedChannel.Channel))
{
EventHandler<SendActivityEventArgs>[] invocationList = this.GetInvocationList<EventHandler<SendActivityEventArgs>>(SendActivity.BeforeSendEvent);
if (invocationList != null && invocationList.Length > 0)
{
base.RaiseGenericEvent(SendActivity.BeforeSendEvent, this, new SendActivityEventArgs(this));
}
SendOperationInfoHelper helper = this.OperationHelper;
WorkflowParameterBindingCollection bindings = this.ParameterBindings;
object[] parameters = helper.GetInputs(this, bindings);
object returnValue = null;
bool isSessionless = ChannelManagerHelpers.IsSessionlessContract(logicalChannel.ContractType);
bool hasContext = (logicalChannel.Context != null && logicalChannel.Context.Count > 0);
bool fatalException = false;
if (!isSessionless && hasContext)
{
ChannelManagerService.ApplyLogicalChannelContext(logicalChannel);
}
try
{
returnValue = this.InvokeOperation(methodInfo, leasedChannel.Channel, parameters);
}
catch (Exception exception)
{
if (Fx.IsFatal(exception))
{
fatalException = true;
}
throw;
}
finally
{
if (!fatalException &&
!hasContext && !isSessionless && !helper.IsOneWay)
{
ChannelManagerService.UpdateLogicalChannelContext(logicalChannel);
}
}
helper.PopulateOutputs(this, bindings, parameters, returnValue);
invocationList = this.GetInvocationList<EventHandler<SendActivityEventArgs>>(SendActivity.AfterResponseEvent);
if (invocationList != null && invocationList.Length > 0)
{
base.RaiseGenericEvent(SendActivity.AfterResponseEvent, this, new SendActivityEventArgs(this));
}
}
}
return ActivityExecutionStatus.Closed;
}
internal void GetParameterPropertyDescriptors(IDictionary properties)
{
if (properties == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("properties");
}
if (((IComponent) this).Site == null)
{
return;
}
TypedOperationInfo serviceOperationInfo = this.ServiceOperationInfo;
if (serviceOperationInfo != null)
{
MethodInfo methodInfo = serviceOperationInfo.GetMethodInfo(((IComponent) this).Site);
if (methodInfo != null)
{
ArrayList paramInfo = new ArrayList(methodInfo.GetParameters());
if (!(methodInfo.ReturnType == typeof(void)))
{
paramInfo.Add(methodInfo.ReturnParameter);
}
foreach (ParameterInfo param in paramInfo)
{
if (param.ParameterType != null)
{
PropertyDescriptor prop =
new ParameterInfoBasedPropertyDescriptor(typeof(ReceiveActivity),
param, true, DesignOnlyAttribute.Yes);
properties[prop.Name] = prop;
}
}
}
}
}
protected override void InitializeProperties()
{
TypedOperationInfo serviceOperationInfo = this.ServiceOperationInfo;
if (serviceOperationInfo == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
new InvalidOperationException(SR2.GetString(SR2.Error_ServiceOperationInfoNotSpecified, this.Name)));
}
OperationParameterInfoCollection parameters = null;
Activity definitionRoot = base.RootActivity.GetValue(Activity.WorkflowDefinitionProperty) as Activity;
if (definitionRoot != null)
{
SendActivity definition = definitionRoot.GetActivityByName(this.QualifiedName, true) as SendActivity;
if ((definition != null) && definition.UserData.Contains(typeof(OperationParameterInfoCollection)))
{
parameters = definition.UserData[typeof(OperationParameterInfoCollection)] as OperationParameterInfoCollection;
}
}
if (parameters == null)
{
parameters = serviceOperationInfo.GetParameters(this.Site);
this.UserData[typeof(OperationParameterInfoCollection)] = parameters;
}
WorkflowParameterBindingCollection parameterBindings = this.ParameterBindings;
foreach (OperationParameterInfo parameterInfo in parameters)
{
if (!parameterBindings.Contains(parameterInfo.Name))
{
parameterBindings.Add(new WorkflowParameterBinding(parameterInfo.Name));
}
}
base.InitializeProperties();
}
object InvokeOperation(MethodInfo operation, IChannel channel, object[] parameters)
{
Guid workflowInstanceId = this.WorkflowInstanceId;
string qualifiedName = this.QualifiedName;
System.Workflow.Runtime.WorkflowTrace.Runtime.TraceEvent(TraceEventType.Verbose, 0,
"Workflow Instance {0}, send activity {1} - invoking operation",
workflowInstanceId, qualifiedName);
try
{
object retVal = operation.ReflectedType.InvokeMember(operation.Name,
BindingFlags.Instance | BindingFlags.Public | BindingFlags.InvokeMethod,
null,
channel,
parameters,
CultureInfo.InvariantCulture);
System.Workflow.Runtime.WorkflowTrace.Runtime.TraceEvent(TraceEventType.Verbose, 0,
"Workflow Instance {0}, send activity {1} - operation invoke succeeded",
workflowInstanceId, qualifiedName);
return retVal;
}
catch (TargetInvocationException e)
{
if (e.InnerException != null)
{
System.Workflow.Runtime.WorkflowTrace.Runtime.TraceEvent(TraceEventType.Error, 0,
"Workflow Instance {0}, send activity {1} - operation invoke failed with error: {2}",
workflowInstanceId, qualifiedName, e.InnerException.Message);
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(e.InnerException);
}
else
{
System.Workflow.Runtime.WorkflowTrace.Runtime.TraceEvent(TraceEventType.Error, 0,
"Workflow Instance {0}, send activity {1} - operation invoke failed with error: {2}",
workflowInstanceId, qualifiedName, e.Message);
throw;
}
}
}
[Serializable]
class SendOperationInfoHelper
{
bool hasReturnValue = false;
IList<KeyValuePair<int, string>> inputParameters;
bool isOneWay = false;
string operationName;
IList<KeyValuePair<int, string>> outputParameters;
int parameterCount = 0;
public SendOperationInfoHelper(IServiceProvider serviceProvider, SendActivity activity)
{
outputParameters = new List<KeyValuePair<int, string>>();
inputParameters = new List<KeyValuePair<int, string>>();
hasReturnValue = false;
if (activity == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("activity");
}
OperationInfoBase serviceOperationInfo = activity.ServiceOperationInfo;
if (serviceOperationInfo == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
new InvalidOperationException(SR2.GetString(SR2.Error_ServiceOperationInfoNotSpecified, activity.Name)));
}
MethodInfo methodInfo = serviceOperationInfo.GetMethodInfo(serviceProvider);
if (methodInfo == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
new InvalidOperationException(SR2.GetString(SR2.Error_MethodInfoNotAvailable, activity.Name)));
}
if (methodInfo.ReturnType != null && methodInfo.ReturnType != typeof(void))
{
hasReturnValue = true;
}
foreach (ParameterInfo parameter in methodInfo.GetParameters())
{
if (parameter.ParameterType.IsByRef ||
parameter.IsOut || (parameter.IsIn && parameter.IsOut))
{
outputParameters.Add(new KeyValuePair<int, string>(parameter.Position, parameter.Name));
}
if (!parameter.IsOut || (parameter.IsIn && parameter.IsOut))
{
inputParameters.Add(new KeyValuePair<int, string>(parameter.Position, parameter.Name));
}
}
this.parameterCount = methodInfo.GetParameters().Length;
this.operationName = serviceOperationInfo.Name;
object[] operationContractAttribs = methodInfo.GetCustomAttributes(typeof(OperationContractAttribute), true);
if (operationContractAttribs != null && operationContractAttribs.Length > 0)
{
if (operationContractAttribs[0] is OperationContractAttribute)
{
this.isOneWay = ((OperationContractAttribute) operationContractAttribs[0]).IsOneWay;
}
}
}
public bool IsOneWay
{
get
{
return this.isOneWay;
}
}
public object[] GetInputs(SendActivity activity, WorkflowParameterBindingCollection bindings)
{
if (activity == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("activity");
}
object[] inputs = new object[this.parameterCount];
if (inputParameters.Count > 0)
{
for (int index = 0; index < inputParameters.Count; index++)
{
KeyValuePair<int, string> parameterInfo = inputParameters[index];
if (bindings.Contains(parameterInfo.Value))
{
inputs[parameterInfo.Key] = bindings[parameterInfo.Value].Value;
}
else
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
new InvalidOperationException(SR2.GetString(SR2.Error_ParameterBindingMissing,
parameterInfo.Value,
this.operationName,
activity.Name)));
}
}
}
return inputs;
}
public void PopulateOutputs(SendActivity activity, WorkflowParameterBindingCollection bindings, object[] outputs, object returnValue)
{
if (activity == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("activity");
}
if (outputs == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("outputs");
}
if (this.outputParameters.Count > 0 && outputs.Length > 0)
{
for (int index = 0; index < outputParameters.Count; ++index)
{
KeyValuePair<int, string> parameterInfo = outputParameters[index];
if (bindings.Contains(parameterInfo.Value))
{
bindings[parameterInfo.Value].Value = outputs[parameterInfo.Key];
}
else
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
new InvalidOperationException(SR2.GetString(SR2.Error_ParameterBindingMissing,
parameterInfo.Value, this.operationName, activity.Name)));
}
}
}
if (hasReturnValue)
{
if (bindings.Contains(SendActivity.ReturnValuePropertyName))
{
bindings[SendActivity.ReturnValuePropertyName].Value = returnValue;
}
else
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(
new InvalidOperationException(SR2.GetString(SR2.Error_ParameterBindingMissing,
SendActivity.ReturnValuePropertyName,
this.operationName,
activity.Name)));
}
}
}
}
}
}
|