Microsoft.Protocols.TestSuites.Common.ResponseSchemaValidationInspector.BeforeSendRequest C# (CSharp) Method

BeforeSendRequest() public method

Inspect the request message and restore this message.
public BeforeSendRequest ( System &request, IClientChannel channel ) : object
request System The message to be sent to the service.
channel IClientChannel The client object channel.
return object
        public object BeforeSendRequest(ref System.ServiceModel.Channels.Message request, IClientChannel channel)
        {
            this.lastRawRequestMessgae = request.ToString();
            return null;
        }
    }