DekGenius.com
[ Team LiB ] Previous Section Next Section

OperationMessage

System.Web.Services.Description (system.web.services.dll)abstract class

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; }
}

Hierarchy

System.Object DocumentableItem OperationMessage

Subclasses

OperationFault, OperationInput, OperationOutput

Returned By

OperationMessageCollection.this

Passed To

OperationMessageCollection.{Add( ), Contains( ), CopyTo( ), IndexOf( ), Insert( ), Remove( ), this}

    [ Team LiB ] Previous Section Next Section