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