Skip to content

Commit d62d1e8

Browse files
committed
System.ServiceModel.Channels
1 parent 3d04834 commit d62d1e8

File tree

6 files changed

+284
-273
lines changed

6 files changed

+284
-273
lines changed

xml/System.ServiceModel.Channels/OutputChannel.xml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,11 @@
121121
<Parameter Name="state" Type="System.Object" />
122122
</Parameters>
123123
<Docs>
124-
<param name="message">To be added.</param>
125-
<param name="callback">To be added.</param>
126-
<param name="state">To be added.</param>
127-
<summary>To be added.</summary>
128-
<returns>To be added.</returns>
124+
<param name="message">The <see cref="T:System.ServiceModel.Channels.Message" /> being sent on the output channel.</param>
125+
<param name="callback">The <see cref="T:System.AsyncCallback" /> delegate.</param>
126+
<param name="state">An object, specified by the application, that contains state information associated with the asynchronous send operation.</param>
127+
<summary>Begins an asynchronous operation to transmit a message to the destination of the output channel.</summary>
128+
<returns>The <see cref="T:System.IAsyncResult" /> that references the asynchronous message transmission.</returns>
129129
<remarks>To be added.</remarks>
130130
</Docs>
131131
</Member>
@@ -158,12 +158,12 @@
158158
<Parameter Name="state" Type="System.Object" />
159159
</Parameters>
160160
<Docs>
161-
<param name="message">To be added.</param>
162-
<param name="timeout">To be added.</param>
163-
<param name="callback">To be added.</param>
164-
<param name="state">To be added.</param>
165-
<summary>To be added.</summary>
166-
<returns>To be added.</returns>
161+
<param name="message">The <see cref="T:System.ServiceModel.Channels.Message" /> being sent on the output channel.</param>
162+
<param name="timeout">The <see cref="T:System.TimeSpan" /> that specifies how long the send operation has to complete before timing out.</param>
163+
<param name="callback">The <see cref="T:System.AsyncCallback" /> delegate that receives the notification of the asynchronous operation send completion.</param>
164+
<param name="state">An object, specified by the application, that contains state information associated with the asynchronous send operation.</param>
165+
<summary>Begins an asynchronous operation to transmit a message to the destination of the output channel within a specified interval of time.</summary>
166+
<returns>The <see cref="T:System.IAsyncResult" /> that references the asynchronous send operation.</returns>
167167
<remarks>To be added.</remarks>
168168
</Docs>
169169
</Member>
@@ -193,8 +193,8 @@
193193
<Parameter Name="result" Type="System.IAsyncResult" />
194194
</Parameters>
195195
<Docs>
196-
<param name="result">To be added.</param>
197-
<summary>To be added.</summary>
196+
<param name="result">The <see cref="T:System.IAsyncResult" /> returned by a call to the <see cref="Overload:System.ServiceModel.Channels.IOutputChannel.BeginSend" /> method.</param>
197+
<summary>Completes an asynchronous operation to transmit a message to the destination of the output channel.</summary>
198198
<remarks>To be added.</remarks>
199199
</Docs>
200200
</Member>
@@ -229,9 +229,9 @@
229229
</TypeParameters>
230230
<Parameters />
231231
<Docs>
232-
<typeparam name="T">To be added.</typeparam>
233-
<summary>To be added.</summary>
234-
<returns>To be added.</returns>
232+
<typeparam name="T">The typed object for which the method is querying.</typeparam>
233+
<summary>Returns a typed object requested, if present, from the appropriate layer in the channel stack.</summary>
234+
<returns>The typed object <paramref name="T" /> requested if it is present or <see langword="null" /> if it is not.</returns>
235235
<remarks>To be added.</remarks>
236236
</Docs>
237237
</Member>
@@ -319,8 +319,8 @@
319319
<ReturnType>System.ServiceModel.EndpointAddress</ReturnType>
320320
</ReturnValue>
321321
<Docs>
322-
<summary>To be added.</summary>
323-
<value>To be added.</value>
322+
<summary>Gets the destination of the service to which messages are sent out on the output channel.</summary>
323+
<value>The <see cref="T:System.ServiceModel.EndpointAddress" /> of the service to which the output channel sends messages.</value>
324324
<remarks>To be added.</remarks>
325325
</Docs>
326326
</Member>
@@ -350,8 +350,8 @@
350350
<Parameter Name="message" Type="System.ServiceModel.Channels.Message" />
351351
</Parameters>
352352
<Docs>
353-
<param name="message">To be added.</param>
354-
<summary>To be added.</summary>
353+
<param name="message">The <see cref="T:System.ServiceModel.Channels.Message" /> being sent on the output channel.</param>
354+
<summary>Transmits a message to the destination of the output channel.</summary>
355355
<remarks>To be added.</remarks>
356356
</Docs>
357357
</Member>
@@ -382,9 +382,9 @@
382382
<Parameter Name="timeout" Type="System.TimeSpan" />
383383
</Parameters>
384384
<Docs>
385-
<param name="message">To be added.</param>
386-
<param name="timeout">To be added.</param>
387-
<summary>To be added.</summary>
385+
<param name="message">The <see cref="T:System.ServiceModel.Channels.Message" /> being sent on the output channel.</param>
386+
<param name="timeout">The <see cref="T:System.TimeSpan" /> that specifies how long the send operation has to complete before timing out.</param>
387+
<summary>Sends a message on the current output channel within a specified interval of time.</summary>
388388
<remarks>To be added.</remarks>
389389
</Docs>
390390
</Member>
@@ -477,8 +477,8 @@
477477
<ReturnType>System.Uri</ReturnType>
478478
</ReturnValue>
479479
<Docs>
480-
<summary>To be added.</summary>
481-
<value>To be added.</value>
480+
<summary>Gets the URI that contains the transport address to which messages are sent on the output channel.</summary>
481+
<value>The <see cref="T:System.Uri" /> that contains the transport address to which messages are sent on the output channel.</value>
482482
<remarks>To be added.</remarks>
483483
</Docs>
484484
</Member>

xml/System.ServiceModel.Channels/RequestChannel.xml

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -127,11 +127,11 @@
127127
<Parameter Name="state" Type="System.Object" />
128128
</Parameters>
129129
<Docs>
130-
<param name="message">To be added.</param>
131-
<param name="callback">To be added.</param>
132-
<param name="state">To be added.</param>
133-
<summary>To be added.</summary>
134-
<returns>To be added.</returns>
130+
<param name="message">The request <see cref="T:System.ServiceModel.Channels.Message" /> to be transmitted.</param>
131+
<param name="callback">The <see cref="T:System.AsyncCallback" /> delegate that receives the notification of the completion of the asynchronous operation transmitting a request message.</param>
132+
<param name="state">An object, specified by the application, that contains state information associated with the asynchronous operation transmitting a request message.</param>
133+
<summary>Begins an asynchronous operation to transmit a request message to the reply side of a request-reply message exchange.</summary>
134+
<returns>The <see cref="T:System.IAsyncResult" /> that references the asynchronous message transmission.</returns>
135135
<remarks>To be added.</remarks>
136136
</Docs>
137137
</Member>
@@ -160,12 +160,12 @@
160160
<Parameter Name="state" Type="System.Object" />
161161
</Parameters>
162162
<Docs>
163-
<param name="message">To be added.</param>
164-
<param name="timeout">To be added.</param>
165-
<param name="callback">To be added.</param>
166-
<param name="state">To be added.</param>
167-
<summary>To be added.</summary>
168-
<returns>To be added.</returns>
163+
<param name="message">The request <see cref="T:System.ServiceModel.Channels.Message" /> to be transmitted.</param>
164+
<param name="timeout">The <see cref="T:System.TimeSpan" /> that specifies the interval of time within which a response must be received.</param>
165+
<param name="callback">The <see cref="T:System.AsyncCallback" /> delegate that receives the notification of the completion of the asynchronous operation transmitting a request message.</param>
166+
<param name="state">An object, specified by the application, that contains state information associated with the asynchronous operation transmitting a request message.</param>
167+
<summary>Begins an asynchronous operation to transmit a request message to the reply side of a request-reply message exchange within a specified interval of time.</summary>
168+
<returns>The <see cref="T:System.IAsyncResult" /> that references the asynchronous message transmission.</returns>
169169
<remarks>To be added.</remarks>
170170
</Docs>
171171
</Member>
@@ -216,9 +216,9 @@
216216
<Parameter Name="result" Type="System.IAsyncResult" />
217217
</Parameters>
218218
<Docs>
219-
<param name="result">To be added.</param>
220-
<summary>To be added.</summary>
221-
<returns>To be added.</returns>
219+
<param name="result">The <see cref="T:System.IAsyncResult" /> returned by a call to the <see cref="Overload:System.ServiceModel.Channels.IInputChannel.BeginReceive" /> method.</param>
220+
<summary>Completes an asynchronous operation to return a message-based response to a transmitted request.</summary>
221+
<returns>The <see cref="T:System.ServiceModel.Channels.Message" /> received in response to the request.</returns>
222222
<remarks>To be added.</remarks>
223223
</Docs>
224224
</Member>
@@ -270,9 +270,9 @@
270270
</TypeParameters>
271271
<Parameters />
272272
<Docs>
273-
<typeparam name="T">To be added.</typeparam>
274-
<summary>To be added.</summary>
275-
<returns>To be added.</returns>
273+
<typeparam name="T">The typed object for which the method is querying.</typeparam>
274+
<summary>Returns a typed object requested, if present, from the appropriate layer in the channel stack.</summary>
275+
<returns>The typed object <paramref name="T" /> requested if it is present or <see langword="null" /> if it is not.</returns>
276276
<remarks>To be added.</remarks>
277277
</Docs>
278278
</Member>
@@ -337,8 +337,8 @@
337337
<ReturnType>System.ServiceModel.EndpointAddress</ReturnType>
338338
</ReturnValue>
339339
<Docs>
340-
<summary>To be added.</summary>
341-
<value>To be added.</value>
340+
<summary>Gets the remote address to which the request channel sends messages.</summary>
341+
<value>The <see cref="T:System.ServiceModel.EndpointAddress" /> to which the request channel sends messages.</value>
342342
<remarks>To be added.</remarks>
343343
</Docs>
344344
</Member>
@@ -364,9 +364,9 @@
364364
<Parameter Name="message" Type="System.ServiceModel.Channels.Message" />
365365
</Parameters>
366366
<Docs>
367-
<param name="message">To be added.</param>
368-
<summary>To be added.</summary>
369-
<returns>To be added.</returns>
367+
<param name="message">The request <see cref="T:System.ServiceModel.Channels.Message" /> to be transmitted.</param>
368+
<summary>Sends a message-based request and returns the correlated message-based response.</summary>
369+
<returns>The <see cref="T:System.ServiceModel.Channels.Message" /> received in response to the request.</returns>
370370
<remarks>To be added.</remarks>
371371
</Docs>
372372
</Member>
@@ -393,10 +393,10 @@
393393
<Parameter Name="timeout" Type="System.TimeSpan" />
394394
</Parameters>
395395
<Docs>
396-
<param name="message">To be added.</param>
397-
<param name="timeout">To be added.</param>
398-
<summary>To be added.</summary>
399-
<returns>To be added.</returns>
396+
<param name="message">The request <see cref="T:System.ServiceModel.Channels.Message" /> to be transmitted.</param>
397+
<param name="timeout">The <see cref="T:System.TimeSpan" /> that specifies the interval of time within which a response must be received.</param>
398+
<summary>Sends a message-based request and returns the correlated message-based response within a specified interval of time.</summary>
399+
<returns>The <see cref="T:System.ServiceModel.Channels.Message" /> received in response to the request.</returns>
400400
<remarks>To be added.</remarks>
401401
</Docs>
402402
</Member>
@@ -471,8 +471,8 @@
471471
<ReturnType>System.Uri</ReturnType>
472472
</ReturnValue>
473473
<Docs>
474-
<summary>To be added.</summary>
475-
<value>To be added.</value>
474+
<summary>Gets the transport address to which the request is send.</summary>
475+
<value>The <see cref="T:System.Uri" /> that contains the transport address to which the message is sent.</value>
476476
<remarks>To be added.</remarks>
477477
</Docs>
478478
</Member>

xml/System.ServiceModel.Channels/SecurityCapabilities.xml

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@
118118
<ReturnType>System.Net.Security.ProtectionLevel</ReturnType>
119119
</ReturnValue>
120120
<Docs>
121-
<summary>To be added.</summary>
122-
<value>To be added.</value>
121+
<summary>Gets the protection level requests supported by the binding.</summary>
122+
<value>The <see cref="T:System.Net.Security.ProtectionLevel" /> that specifies the protection level requests supported by the binding.</value>
123123
<remarks>To be added.</remarks>
124124
</Docs>
125125
</Member>
@@ -142,8 +142,8 @@
142142
<ReturnType>System.Net.Security.ProtectionLevel</ReturnType>
143143
</ReturnValue>
144144
<Docs>
145-
<summary>To be added.</summary>
146-
<value>To be added.</value>
145+
<summary>Gets the protection level responses supported by the binding.</summary>
146+
<value>The <see cref="T:System.Net.Security.ProtectionLevel" /> that specifies the protection level responses supported by the binding.</value>
147147
<remarks>To be added.</remarks>
148148
</Docs>
149149
</Member>
@@ -166,8 +166,9 @@
166166
<ReturnType>System.Boolean</ReturnType>
167167
</ReturnValue>
168168
<Docs>
169-
<summary>To be added.</summary>
170-
<value>To be added.</value>
169+
<summary>Gets a value that indicates whether the binding supports client authentication.</summary>
170+
<value>
171+
<see langword="true" /> if the binding can support client authentication; otherwise, <see langword="false" />.</value>
171172
<remarks>To be added.</remarks>
172173
</Docs>
173174
</Member>
@@ -190,8 +191,9 @@
190191
<ReturnType>System.Boolean</ReturnType>
191192
</ReturnValue>
192193
<Docs>
193-
<summary>To be added.</summary>
194-
<value>To be added.</value>
194+
<summary>Gets a value that indicates whether the binding supports client Windows identity.</summary>
195+
<value>
196+
<see langword="true" /> if the binding can support client Windows identity; otherwise, <see langword="false" />.</value>
195197
<remarks>To be added.</remarks>
196198
</Docs>
197199
</Member>
@@ -214,8 +216,9 @@
214216
<ReturnType>System.Boolean</ReturnType>
215217
</ReturnValue>
216218
<Docs>
217-
<summary>To be added.</summary>
218-
<value>To be added.</value>
219+
<summary>Gets a value that indicates whether the binding supports server authentication.</summary>
220+
<value>
221+
<see langword="true" /> if the binding can support server authentication; otherwise, <see langword="false" />.</value>
219222
<remarks>To be added.</remarks>
220223
</Docs>
221224
</Member>

0 commit comments

Comments
 (0)