Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
50 changes: 25 additions & 25 deletions xml/System.ServiceModel.Channels/OutputChannel.xml
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,11 @@
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="message">To be added.</param>
<param name="callback">To be added.</param>
<param name="state">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<param name="message">The <see cref="T:System.ServiceModel.Channels.Message" /> being sent on the output channel.</param>
<param name="callback">The <see cref="T:System.AsyncCallback" /> delegate.</param>
<param name="state">An object, specified by the application, that contains state information associated with the asynchronous send operation.</param>
<summary>Begins an asynchronous operation to transmit a message to the destination of the output channel.</summary>
<returns>The <see cref="T:System.IAsyncResult" /> that references the asynchronous message transmission.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
Expand Down Expand Up @@ -158,12 +158,12 @@
<Parameter Name="state" Type="System.Object" />
</Parameters>
<Docs>
<param name="message">To be added.</param>
<param name="timeout">To be added.</param>
<param name="callback">To be added.</param>
<param name="state">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<param name="message">The <see cref="T:System.ServiceModel.Channels.Message" /> being sent on the output channel.</param>
<param name="timeout">The <see cref="T:System.TimeSpan" /> that specifies how long the send operation has to complete before timing out.</param>
<param name="callback">The <see cref="T:System.AsyncCallback" /> delegate that receives the notification of the asynchronous operation send completion.</param>
<param name="state">An object, specified by the application, that contains state information associated with the asynchronous send operation.</param>
<summary>Begins an asynchronous operation to transmit a message to the destination of the output channel within a specified interval of time.</summary>
<returns>The <see cref="T:System.IAsyncResult" /> that references the asynchronous send operation.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
Expand Down Expand Up @@ -193,8 +193,8 @@
<Parameter Name="result" Type="System.IAsyncResult" />
</Parameters>
<Docs>
<param name="result">To be added.</param>
<summary>To be added.</summary>
<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>
<summary>Completes an asynchronous operation to transmit a message to the destination of the output channel.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
Expand Down Expand Up @@ -229,9 +229,9 @@
</TypeParameters>
<Parameters />
<Docs>
<typeparam name="T">To be added.</typeparam>
<summary>To be added.</summary>
<returns>To be added.</returns>
<typeparam name="T">The typed object for which the method is querying.</typeparam>
<summary>Returns a typed object requested, if present, from the appropriate layer in the channel stack.</summary>
<returns>The typed object <paramref name="T" /> requested if it is present or <see langword="null" /> if it is not.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
Expand Down Expand Up @@ -319,8 +319,8 @@
<ReturnType>System.ServiceModel.EndpointAddress</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<summary>Gets the destination of the service to which messages are sent out on the output channel.</summary>
<value>The <see cref="T:System.ServiceModel.EndpointAddress" /> of the service to which the output channel sends messages.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
Expand Down Expand Up @@ -350,8 +350,8 @@
<Parameter Name="message" Type="System.ServiceModel.Channels.Message" />
</Parameters>
<Docs>
<param name="message">To be added.</param>
<summary>To be added.</summary>
<param name="message">The <see cref="T:System.ServiceModel.Channels.Message" /> being sent on the output channel.</param>
<summary>Transmits a message to the destination of the output channel.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
Expand Down Expand Up @@ -382,9 +382,9 @@
<Parameter Name="timeout" Type="System.TimeSpan" />
</Parameters>
<Docs>
<param name="message">To be added.</param>
<param name="timeout">To be added.</param>
<summary>To be added.</summary>
<param name="message">The <see cref="T:System.ServiceModel.Channels.Message" /> being sent on the output channel.</param>
<param name="timeout">The <see cref="T:System.TimeSpan" /> that specifies how long the send operation has to complete before timing out.</param>
<summary>Sends a message on the current output channel within a specified interval of time.</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
Expand Down Expand Up @@ -477,8 +477,8 @@
<ReturnType>System.Uri</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<summary>Gets the URI that contains the transport address to which messages are sent on the output channel.</summary>
<value>The <see cref="T:System.Uri" /> that contains the transport address to which messages are sent on the output channel.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
Expand Down
Loading