//
// System.Runtime.Serialization.Formatters.ISoapMessage
//
// Author:
// David Dawkins (david@dawkins.st)
//
// (C) David Dawkins
//
using System.Runtime.Remoting.Messaging;
namespace System.Runtime.Serialization.Formatters {
///
/// Interface for making SOAP method calls
public interface ISoapMessage {
///
/// Get or set the headers ("out-of-band" data) for the method call
Header[] Headers {
get;
set;
}
///
/// Get or set the method name
string MethodName {
get;
set;
}
///
/// Get or set the method parameter names
/// Get or set the method parameter types
/// Get or set the method parameter values
/// Get or set the XML namespace for the location of the called object