-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
SendReply.xml
354 lines (335 loc) · 25.4 KB
/
SendReply.xml
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
<Type Name="SendReply" FullName="System.ServiceModel.Activities.SendReply">
<TypeSignature Language="C#" Value="public sealed class SendReply : System.Activities.Activity" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi sealed beforefieldinit SendReply extends System.Activities.Activity" />
<TypeSignature Language="DocId" Value="T:System.ServiceModel.Activities.SendReply" />
<TypeSignature Language="VB.NET" Value="Public NotInheritable Class SendReply
Inherits Activity" />
<TypeSignature Language="F#" Value="type SendReply = class
 inherit Activity" />
<TypeSignature Language="C++ CLI" Value="public ref class SendReply sealed : System::Activities::Activity" />
<AssemblyInfo>
<AssemblyName>System.ServiceModel.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Activities.Activity</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Windows.Markup.ContentProperty("Content")]</AttributeName>
<AttributeName Language="F#">[<System.Windows.Markup.ContentProperty("Content")>]</AttributeName>
</Attribute>
</Attributes>
<Docs>
<summary>An activity that sends the reply message as part of a request/response message exchange pattern on the service side.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Examples
The following example shows how to create a <xref:System.ServiceModel.Activities.SendReply> activity and add it to a workflow in code.
:::code language="csharp" source="~/snippets/csharp/VS_Snippets_CFX/sendreceiveparameters/cs/echoworkflowservice/program.cs" id="Snippet0":::
The following example shows how to create a <xref:System.ServiceModel.Activities.SendReply> activity and add it to a workflow service in XAML.
```xaml
<WorkflowService mc:Ignorable="sap" ConfigurationName="Service1" Name="Service1" mva:VisualBasic.Settings="Assembly references and imported namespaces serialized as XML namespaces" xmlns="http://schemas.microsoft.com/netfx/2009/xaml/servicemodel" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mv="clr-namespace:Microsoft.VisualBasic;assembly=System" xmlns:mva="clr-namespace:Microsoft.VisualBasic.Activities;assembly=System.Activities" xmlns:p="http://schemas.microsoft.com/netfx/2009/xaml/activities" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:s1="clr-namespace:System;assembly=System" xmlns:s2="clr-namespace:System;assembly=System.Xml" xmlns:s3="clr-namespace:System;assembly=System.Core" xmlns:sad="clr-namespace:System.Activities.Debugger;assembly=System.Activities" xmlns:sap="http://schemas.microsoft.com/netfx/2009/xaml/activities/presentation" xmlns:scg="clr-namespace:System.Collections.Generic;assembly=System" xmlns:scg1="clr-namespace:System.Collections.Generic;assembly=System.ServiceModel" xmlns:scg2="clr-namespace:System.Collections.Generic;assembly=System.Core" xmlns:scg3="clr-namespace:System.Collections.Generic;assembly=mscorlib" xmlns:sd="clr-namespace:System.Data;assembly=System.Data" xmlns:sl="clr-namespace:System.Linq;assembly=System.Core" xmlns:ssa="clr-namespace:System.ServiceModel.Activities;assembly=System.ServiceModel.Activities" xmlns:st="clr-namespace:System.Text;assembly=mscorlib" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<p:Sequence sad:XamlDebuggerXmlReader.FileName="c:\Projects\WFServiceSnippets\WFServiceSnippets\Service1.xamlx" sap:VirtualizedContainerService.HintSize="277,644" mva:VisualBasic.Settings="Assembly references and imported namespaces serialized as XML namespaces">
<p:Sequence.Variables>
<p:Variable x:TypeArguments="CorrelationHandle" Name="__handle1" />
<p:Variable x:TypeArguments="x:String" Name="Message" />
<p:Variable x:TypeArguments="x:String" Name="Echo" />
</p:Sequence.Variables>
<sap:WorkflowViewStateService.ViewState>
<scg3:Dictionary x:TypeArguments="x:String, x:Object">
<x:Boolean x:Key="IsExpanded">True</x:Boolean>
</scg3:Dictionary>
</sap:WorkflowViewStateService.ViewState>
<Receive x:Name="__ReferenceID0" CanCreateInstance="True" DisplayName="ReceiveString" sap:VirtualizedContainerService.HintSize="255,90" OperationName="Echo" ServiceContractName="Echo">
<Receive.CorrelationInitializers>
<RequestReplyCorrelationInitializer CorrelationHandle="[__handle1]" />
</Receive.CorrelationInitializers>
<ReceiveParametersContent>
<p:OutArgument x:TypeArguments="x:String" x:Key="message">[Message]</p:OutArgument>
</ReceiveParametersContent>
</Receive>
<p:WriteLine sap:VirtualizedContainerService.HintSize="255,61" Text="["Message received: " + Message]" />
<p:Assign sap:VirtualizedContainerService.HintSize="255,58">
<p:Assign.To>
<p:OutArgument x:TypeArguments="x:String">[Echo]</p:OutArgument>
</p:Assign.To>
<p:Assign.Value>
<p:InArgument x:TypeArguments="x:String">["<echo> " + Message]</p:InArgument>
</p:Assign.Value>
</p:Assign>
<SendReply Request="{x:Reference __ReferenceID0}" DisplayName="SendReply" sap:VirtualizedContainerService.HintSize="255,90">
<SendParametersContent>
<p:InArgument x:TypeArguments="x:String" x:Key="echo">[Echo]</p:InArgument>
</SendParametersContent>
</SendReply>
<p:WriteLine sap:VirtualizedContainerService.HintSize="255,61" Text="["Message sent: " + Echo]" />
</p:Sequence>
</WorkflowService>
```
]]></format>
</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public SendReply ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:System.ServiceModel.Activities.SendReply.#ctor" />
<MemberSignature Language="VB.NET" Value="Public Sub New ()" />
<MemberSignature Language="C++ CLI" Value="public:
 SendReply();" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>System.ServiceModel.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:System.ServiceModel.Activities.SendReply" /> class.</summary>
<remarks>
<format type="text/markdown"><![CDATA[
## Examples
The following example shows how to use this constructor.
:::code language="csharp" source="~/snippets/csharp/VS_Snippets_CFX/sendreceiveparameters/cs/echoworkflowservice/program.cs" id="Snippet2":::
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="Action">
<MemberSignature Language="C#" Value="public string Action { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance string Action" />
<MemberSignature Language="DocId" Value="P:System.ServiceModel.Activities.SendReply.Action" />
<MemberSignature Language="VB.NET" Value="Public Property Action As String" />
<MemberSignature Language="F#" Value="member this.Action : string with get, set" Usage="System.ServiceModel.Activities.SendReply.Action" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::String ^ Action { System::String ^ get(); void set(System::String ^ value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.ServiceModel.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue(null)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue(null)>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the value of the action header of the message.</summary>
<value>The action URI of the message.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CacheMetadata">
<MemberSignature Language="C#" Value="protected override void CacheMetadata (System.Activities.ActivityMetadata metadata);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig virtual instance void CacheMetadata(valuetype System.Activities.ActivityMetadata metadata) cil managed" />
<MemberSignature Language="DocId" Value="M:System.ServiceModel.Activities.SendReply.CacheMetadata(System.Activities.ActivityMetadata)" />
<MemberSignature Language="VB.NET" Value="Protected Overrides Sub CacheMetadata (metadata As ActivityMetadata)" />
<MemberSignature Language="F#" Value="override this.CacheMetadata : System.Activities.ActivityMetadata -> unit" Usage="sendReply.CacheMetadata metadata" />
<MemberSignature Language="C++ CLI" Value="protected:
 override void CacheMetadata(System::Activities::ActivityMetadata metadata);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.ServiceModel.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="metadata" Type="System.Activities.ActivityMetadata" />
</Parameters>
<Docs>
<param name="metadata">To be added.</param>
<summary>To be added.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Content">
<MemberSignature Language="C#" Value="public System.ServiceModel.Activities.SendContent Content { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.ServiceModel.Activities.SendContent Content" />
<MemberSignature Language="DocId" Value="P:System.ServiceModel.Activities.SendReply.Content" />
<MemberSignature Language="VB.NET" Value="Public Property Content As SendContent" />
<MemberSignature Language="F#" Value="member this.Content : System.ServiceModel.Activities.SendContent with get, set" Usage="System.ServiceModel.Activities.SendReply.Content" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::ServiceModel::Activities::SendContent ^ Content { System::ServiceModel::Activities::SendContent ^ get(); void set(System::ServiceModel::Activities::SendContent ^ value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.ServiceModel.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue(null)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue(null)>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.ServiceModel.Activities.SendContent</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets the content sent by the <see cref="T:System.ServiceModel.Activities.SendReply" /> activity.</summary>
<value>The content to send.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
The content can be one of the following types: <xref:System.ServiceModel.Activities.SendMessageContent> or <xref:System.ServiceModel.Activities.SendParametersContent>. Use <xref:System.ServiceModel.Activities.SendMessageContent> when sending a <xref:System.ServiceModel.Channels.Message> or a message contract type. Use <xref:System.ServiceModel.Activities.SendParametersContent> when sending data contract types.
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="CorrelationInitializers">
<MemberSignature Language="C#" Value="public System.Collections.ObjectModel.Collection<System.ServiceModel.Activities.CorrelationInitializer> CorrelationInitializers { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Collections.ObjectModel.Collection`1<class System.ServiceModel.Activities.CorrelationInitializer> CorrelationInitializers" />
<MemberSignature Language="DocId" Value="P:System.ServiceModel.Activities.SendReply.CorrelationInitializers" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property CorrelationInitializers As Collection(Of CorrelationInitializer)" />
<MemberSignature Language="F#" Value="member this.CorrelationInitializers : System.Collections.ObjectModel.Collection<System.ServiceModel.Activities.CorrelationInitializer>" Usage="System.ServiceModel.Activities.SendReply.CorrelationInitializers" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::Collections::ObjectModel::Collection<System::ServiceModel::Activities::CorrelationInitializer ^> ^ CorrelationInitializers { System::Collections::ObjectModel::Collection<System::ServiceModel::Activities::CorrelationInitializer ^> ^ get(); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.ServiceModel.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue(null)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue(null)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Collections.ObjectModel.Collection<System.ServiceModel.Activities.CorrelationInitializer></ReturnType>
</ReturnValue>
<Docs>
<summary>Gets a collection of correlation initializers.</summary>
<value>A collection of correlation initializers.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
For more information about correlation see [Correlation](/dotnet/framework/wcf/feature-details/correlation).
]]></format>
</remarks>
</Docs>
</Member>
<Member MemberName="FromOperationDescription">
<MemberSignature Language="C#" Value="public static System.ServiceModel.Activities.SendReply FromOperationDescription (System.ServiceModel.Description.OperationDescription operation, out System.Collections.Generic.IEnumerable<System.ServiceModel.Activities.SendReply> faultReplies);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.ServiceModel.Activities.SendReply FromOperationDescription(class System.ServiceModel.Description.OperationDescription operation, [out] class System.Collections.Generic.IEnumerable`1<class System.ServiceModel.Activities.SendReply>& faultReplies) cil managed" />
<MemberSignature Language="DocId" Value="M:System.ServiceModel.Activities.SendReply.FromOperationDescription(System.ServiceModel.Description.OperationDescription,System.Collections.Generic.IEnumerable{System.ServiceModel.Activities.SendReply}@)" />
<MemberSignature Language="VB.NET" Value="Public Shared Function FromOperationDescription (operation As OperationDescription, ByRef faultReplies As IEnumerable(Of SendReply)) As SendReply" />
<MemberSignature Language="F#" Value="static member FromOperationDescription : System.ServiceModel.Description.OperationDescription * seq -> System.ServiceModel.Activities.SendReply" Usage="System.ServiceModel.Activities.SendReply.FromOperationDescription (operation, faultReplies)" />
<MemberSignature Language="C++ CLI" Value="public:
 static System::ServiceModel::Activities::SendReply ^ FromOperationDescription(System::ServiceModel::Description::OperationDescription ^ operation, [Runtime::InteropServices::Out] System::Collections::Generic::IEnumerable<System::ServiceModel::Activities::SendReply ^> ^ % faultReplies);" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>System.ServiceModel.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.ServiceModel.Activities.SendReply</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="operation" Type="System.ServiceModel.Description.OperationDescription" Index="0" FrameworkAlternate="netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1" />
<Parameter Name="faultReplies" Type="System.Collections.Generic.IEnumerable<System.ServiceModel.Activities.SendReply>" RefType="out" Index="1" FrameworkAlternate="netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8;netframework-4.8.1" />
</Parameters>
<Docs>
<param name="operation">The contract operation description.</param>
<param name="faultReplies">When this method returns, contains the send replies with fault.</param>
<summary>Returns the send reply activity from the given contract operation description.</summary>
<returns>A <see cref="T:System.ServiceModel.Activities.SendReply" /> object from the given contract operation description.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="PersistBeforeSend">
<MemberSignature Language="C#" Value="public bool PersistBeforeSend { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool PersistBeforeSend" />
<MemberSignature Language="DocId" Value="P:System.ServiceModel.Activities.SendReply.PersistBeforeSend" />
<MemberSignature Language="VB.NET" Value="Public Property PersistBeforeSend As Boolean" />
<MemberSignature Language="F#" Value="member this.PersistBeforeSend : bool with get, set" Usage="System.ServiceModel.Activities.SendReply.PersistBeforeSend" />
<MemberSignature Language="C++ CLI" Value="public:
 property bool PersistBeforeSend { bool get(); void set(bool value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.ServiceModel.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue(false)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue(false)>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a value that specifies whether the workflow service instance should be persisted before sending the message.</summary>
<value>
<see langword="true" /> if the workflow service should be persisted before sending the message;otherwise <see langword="false" />.</value>
<remarks>To be added.</remarks>
<related type="ExternalDocumentation" href="https://go.microsoft.com/fwlink/?LinkId=189151">How to Send and Receive Faults in Workflow Services</related>
</Docs>
</Member>
<Member MemberName="Request">
<MemberSignature Language="C#" Value="public System.ServiceModel.Activities.Receive Request { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.ServiceModel.Activities.Receive Request" />
<MemberSignature Language="DocId" Value="P:System.ServiceModel.Activities.SendReply.Request" />
<MemberSignature Language="VB.NET" Value="Public Property Request As Receive" />
<MemberSignature Language="F#" Value="member this.Request : System.ServiceModel.Activities.Receive with get, set" Usage="System.ServiceModel.Activities.SendReply.Request" />
<MemberSignature Language="C++ CLI" Value="public:
 property System::ServiceModel::Activities::Receive ^ Request { System::ServiceModel::Activities::Receive ^ get(); void set(System::ServiceModel::Activities::Receive ^ value); };" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>System.ServiceModel.Activities</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.DefaultValue(null)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.DefaultValue(null)>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<get: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
<Attribute FrameworkAlternate="netframework-4.0">
<AttributeName Language="C#">[set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]</AttributeName>
<AttributeName Language="F#">[<set: System.Runtime.TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.ServiceModel.Activities.Receive</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets or sets a reference to the <see cref="T:System.ServiceModel.Activities.Receive" /> activity paired with this <see cref="T:System.ServiceModel.Activities.SendReply" /> activity.</summary>
<value>A receive activity.</value>
<remarks>
<format type="text/markdown"><![CDATA[
## Remarks
This property must not be `null`. <xref:System.ServiceModel.Activities.Receive> and <xref:System.ServiceModel.Activities.SendReply> activities are used together on the service side to model a request/response messaging pattern. This property specifies which <xref:System.ServiceModel.Activities.Receive> activity is paired.
## Examples
The following example shows how to use this constructor.
:::code language="csharp" source="~/snippets/csharp/VS_Snippets_CFX/sendreceiveparameters/cs/echoworkflowservice/program.cs" id="Snippet2":::
]]></format>
</remarks>
</Docs>
</Member>
</Members>
</Type>