System::Web::Services::Protocols::SoapClientMessage class

SoapClientMessage class

Represents the data in a SOAP request sent or a SOAP response received. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.

class SoapClientMessage : public System::Web::Services::Protocols::SoapMessage

Methods

MethodDescription
get_Action() overrideReturns a value of the ‘SOAPAction’ attribute.
get_Client()Returns an instance of the client proxy class.
virtual get_OneWay()Returns a value that indicates if a client doesn’t wait for a server to finish processing a method.
get_SoapVersion() overrideReturns the SOAP version that is used.
get_Url() overrideReturns the XML Web service URL.
SoapClientMessage(System::SharedPtr<SoapHttpClientProtocol>, System::SharedPtr<SoapMethodStubInfo>, String, System::ArrayPtr<System::SharedPtr<Object>>)Constructs a new instance.

See Also