This documentation is archived and is not being maintained.
MessagePartCollection::Item Property (Int32)
Visual Studio 2010
Gets or sets the value of a MessagePart at the specified zero-based index.
Assembly: System.Web.Services (in System.Web.Services.dll)
public: property MessagePart^ Item[int index] { MessagePart^ get (int index); void set (int index, MessagePart^ value); }
Parameters
- index
- Type: System::Int32
The zero-based index of the MessagePart whose value is modified or returned.
The following example demonstrates the use of a zero-based index to iterate through the members of a MessagePartCollection.
// Get the message part collection for each message. for ( int i = 0; i < myMessageCollection->Count; ++i ) { Console::WriteLine( "Message : {0}", myMessageCollection[ i ]->Name ); // Get the message part collection. MessagePartCollection^ myMessagePartCollection = myMessageCollection[ i ]->Parts; // Display the part collection. for ( int k = 0; k < myMessagePartCollection->Count; k++ ) { Console::WriteLine( "\t Part Name : {0}", myMessagePartCollection[ k ]->Name ); Console::WriteLine( "\t Message Name : {0}", myMessagePartCollection[ k ]->Message->Name ); } Console::WriteLine( "" ); }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: