public interface ISoapMessage
|
To support SOAP RPC calls that are based on the ISoapMessage interface and do not use the IRemotingFormatter functionality, set the SoapFormatter.TopObject property to an object that supports this interface.
Headers | Read-write Gets or sets the out-of-band data of the method call. |
MethodName | Read-write Gets or sets the name of the called method. |
ParamNames | Read-write Gets or sets the parameter names of the method call. |
ParamTypes | Read-write Gets or sets the parameter types of a method call. |
ParamValues | Read-write Gets or sets the parameter values of a method call. |
XmlNameSpace | Read-write Gets or sets the XML namespace of the SOAP RPC (Remote Procedure Call) ISoapMessage.MethodName element. |
Header[] Headers {get; set;}
|
string MethodName {get; set;}
|
string[] ParamNames {get; set;}
|
Type[] ParamTypes {get; set;}
|
object[] ParamValues {get; set;}
|
string XmlNameSpace {get; set;}
|