This abstract class represents the WSDL <message> element. There are two types of operations recognized in WSDL, input and output. These operations are represented specifically by the classes OperationInput and OperationOutput, both of which derive from this class. OperationFault also derives from this class.
public abstract class OperationMessage : DocumentableItem { // Protected Constructorsprotected OperationMessage( );// Public Instance Properties public XmlQualifiedName Message{set; get; } public string Name{set; get; } public Operation Operation{get; } }