Example #1
0
 /// <summary>
 /// Causes a communication object to transition from its current state into the closed state.
 /// </summary>
 void ICommunicationObject.Close()
 {
     RequestChannel.Close();
 }
Example #2
0
 /// <summary>
 /// Causes a communication object to transition from its current state into the closed state.
 /// </summary>
 /// <param name="timeout">
 /// The <see cref="TimeSpan" /> that specifies how long the open operation has to complete before timing out.
 /// </param>
 void ICommunicationObject.Close(TimeSpan timeout)
 {
     RequestChannel.Close(timeout);
 }