This documentation is archived and is not being maintained.

Operation::Messages Property

Gets the collection of instances of the Message class defined by the current Operation.

Namespace:  System.Web.Services.Description
Assembly:  System.Web.Services (in System.Web.Services.dll)

public:
property OperationMessageCollection^ Messages {
	OperationMessageCollection^ get ();
}

Because an Operation is associated with exactly one OperationInput and exactly one OperationOutput, only one instance of each can be a member of this collection, and thus the collection can have a maximum of two members.

// Create an Operation.
Operation^ myOperation = gcnew Operation;
myOperation->Name = myOperationName;
OperationMessage^ myInput = dynamic_cast<OperationMessage^>(gcnew OperationInput);
myInput->Message = gcnew XmlQualifiedName( myInputMesg );
OperationMessage^ myOutput = dynamic_cast<OperationMessage^>(gcnew OperationOutput);
myOutput->Message = gcnew XmlQualifiedName( myOutputMesg );

// Add messages to the OperationMessageCollection.
myOperation->Messages->Add( myInput );
myOperation->Messages->Add( myOutput );
Console::WriteLine( "Operation name is: {0}", myOperation->Name );
// Create an Operation.
Operation* myOperation = new Operation();
myOperation->Name = myOperationName;
OperationMessage* myInput = dynamic_cast<OperationMessage*>(new OperationInput());
myInput->Message =  new XmlQualifiedName(myInputMesg);
OperationMessage* myOutput = dynamic_cast<OperationMessage*>(new OperationOutput());
myOutput->Message = new XmlQualifiedName(myOutputMesg);

// Add messages to the OperationMessageCollection.
myOperation->Messages->Add(myInput);
myOperation->Messages->Add(myOutput);
Console::WriteLine(S"Operation name is: {0}", myOperation->Name);     

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
Show: