4 instantiations of SendReply
System.Activities.Core.Presentation (2)
System\ServiceModel\Activities\Presentation\Factories\ReceiveAndSendReplyFactory.cs (1)
50
new
SendReply
System\ServiceModel\Activities\Presentation\ReceiveDesigner.xaml.cs (1)
219
reply = new
SendReply
()
System.ServiceModel.Activities (2)
System\ServiceModel\Activities\SendReply.cs (2)
278
reply = new
SendReply
();
415
SendReply faultReply = new
SendReply
()
70 references to SendReply
System.Activities.Core.Presentation (26)
System\Activities\Core\Presentation\DesignerMetadata.cs (4)
57
builder.AddCustomAttributes(typeof(
SendReply
), new FeatureAttribute(typeof(SendReplyValidationFeature)));
58
builder.AddCustomAttributes(typeof(
SendReply
), new DesignerAttribute(typeof(SendReplyDesigner)));
59
builder.AddCustomAttributes(typeof(
SendReply
), new ActivityDesignerOptionsAttribute { AllowDrillIn = false });
60
CutCopyPasteHelper.AddDisallowedTypeForCopy(typeof(
SendReply
));
System\Activities\Presentation\ActivityDesignerHelper.cs (1)
123
item.IsAssignableFrom<
SendReply
>();
System\ServiceModel\Activities\Presentation\CorrelationInitializerDesigner.xaml.cs (1)
83
else if (activity.IsAssignableFrom<
SendReply
>() || activity.IsAssignableFrom<ReceiveReply>())
System\ServiceModel\Activities\Presentation\MessageQueryEditor.xaml.cs (1)
149
bool isReply = this.Activity.IsAssignableFrom<
SendReply
>() || this.Activity.IsAssignableFrom<ReceiveReply>();
System\ServiceModel\Activities\Presentation\ReceiveDesigner.xaml.cs (4)
165
ErrorReporting.ShowAlertMessage(string.Format(CultureInfo.CurrentUICulture, System.Activities.Core.Presentation.SR.CannotPasteSendReplyOrReceiveReply, typeof(
SendReply
).Name));
171
CutCopyPasteHelper.PutCallbackOnClipBoard(callback, typeof(
SendReply
), this.ModelItem);
175
static
SendReply
CreateSendReply(ModelItem target, object context)
177
SendReply
reply = null;
System\ServiceModel\Activities\Presentation\SendReplyDesigner.xaml.cs (6)
36
Type sendType = typeof(
SendReply
);
71
SendReply
sendReply = (
SendReply
)ownerActivity;
77
SendReply
sendReply = (
SendReply
)ownerActivity;
107
SendMessageContent messageContent = ((
SendReply
)this.ModelItem.GetCurrentValue()).Content as SendMessageContent;
System\ServiceModel\Activities\Presentation\SendReplyValidationFeature.cs (5)
22
get { return typeof(
SendReply
); }
39
DelegateInArgument<
SendReply
> sendReply = new DelegateInArgument<
SendReply
>();
44
return new Constraint<
SendReply
>
46
Body = new ActivityAction<
SendReply
, ValidationContext>
System\ServiceModel\Activities\Presentation\ServiceContractImporter.cs (4)
162
IEnumerable<
SendReply
> faultReplies;
163
SendReply
reply =
SendReply
.FromOperationDescription(operation, out faultReplies);
174
foreach (
SendReply
faultReply in faultReplies)
System.ServiceModel.Activities (44)
System\ServiceModel\Activities\ContractInferenceHelper.cs (3)
313
SendReply
sendReply = receive.FollowingReplies[0];
530
SendReply
sendReply = receive.FollowingReplies[0];
549
foreach (
SendReply
sendFault in activity.FollowingFaults)
System\ServiceModel\Activities\ContractValidationHelper.cs (2)
98
public static void ValidateSendReplyWithSendReply(
SendReply
sendReply1,
SendReply
sendReply2)
System\ServiceModel\Activities\Receive.cs (6)
35
IList<
SendReply
> followingReplies;
36
IList<
SendReply
> followingFaults;
240
internal IList<
SendReply
> FollowingReplies
246
this.followingReplies = new List<
SendReply
>();
252
internal IList<
SendReply
> FollowingFaults
258
this.followingFaults = new List<
SendReply
>();
System\ServiceModel\Activities\SendMessageContent.cs (4)
180
SendReply
sendReply = owner as
SendReply
;
221
SendReply
sendReply = owner as
SendReply
;
System\ServiceModel\Activities\SendParametersContent.cs (3)
159
string overridingAction = owner is Send ? ((Send)owner).Action : ((
SendReply
)owner).Action;
192
Fx.Assert(owner is
SendReply
, "The parent of a SendParametersContent with out-message can only be SendReply!");
193
overridingAction = ((
SendReply
)owner).Action;
System\ServiceModel\Activities\SendReply.cs (7)
254
public static
SendReply
FromOperationDescription(OperationDescription operation, out IEnumerable<
SendReply
> faultReplies)
268
List<
SendReply
> faultRepliesList = new List<
SendReply
>();
269
SendReply
reply = null;
407
static
SendReply
BuildFaultReplies(FaultDescription faultDescription, bool isMessageContract)
415
SendReply
faultReply = new SendReply()
System\ServiceModel\Activities\WorkflowService.cs (19)
237
AddAdditionalConstraint(workflowServiceSettings, typeof(
SendReply
), GetContractFirstValidationSendReplyConstraints());
471
foreach (
SendReply
reply in receive.FollowingReplies)
484
foreach (
SendReply
fault in receive.FollowingFaults)
668
else if (activity is
SendReply
) // Let's see if this is a SendReply
670
SendReply
sendReply = (
SendReply
)activity;
683
SendReply
followingReply = pairedReceive.FollowingReplies[0];
756
SendReply
sendReply = reply as
SendReply
;
821
DelegateInArgument<
SendReply
> element = new DelegateInArgument<
SendReply
> { Name = "ReceiveElement" };
824
return new Constraint<
SendReply
>
826
Body = new ActivityAction<
SendReply
, ValidationContext>
885
public ReceiveAndReplyTuple(Receive receive,
SendReply
reply)
1184
public InArgument<
SendReply
> ReceiveActivity
1204
RuntimeArgument receiveActivity = new RuntimeArgument("ReceiveActivity", typeof(
SendReply
), ArgumentDirection.In);
1210
this.ReceiveActivity = new InArgument<
SendReply
>();
1238
SendReply
sendReplyActivity = this.ReceiveActivity.Get(context);
1275
void ValidateContract(NativeActivityContext context,
SendReply
sendReply, OperationDescription targetOperation)