예제 #1
0
 /// <summary>
 /// Sends the request over the specified endpoint.
 /// </summary>
 public Request Send(IEndPoint endpoint)
 {
     ValidateBeforeSending();
     _endPoint = endpoint;
     endpoint.SendRequest(this);
     return(this);
 }
예제 #2
0
 /// <summary>
 /// Sends the request over the specified endpoint.
 /// </summary>
 public Request Send(IEndPoint endpoint)
 {
     ValidateBeforeSending();
     _endPoint = endpoint;
     endpoint.SendRequest(this);
     return this;
 }