ServiceDescriptionFormatExtensionCollection.Item-Eigenschaft
Ruft den Wert eines Members der ServiceDescriptionFormatExtensionCollection ab oder legt diesen fest.
Namespace: System.Web.Services.Description
Assembly: System.Web.Services (in system.web.services.dll)
Syntax
'Declaration
Public Default Property Item ( _
index As Integer _
) As Object
'Usage
Dim instance As ServiceDescriptionFormatExtensionCollection
Dim index As Integer
Dim value As Object
value = instance(index)
instance(index) = value
public Object this [
int index
] { get; set; }
public:
property Object^ default [int] {
Object^ get (int index);
void set (int index, Object^ value);
}
/** @property */
public Object get_Item (int index)
/** @property */
public void set_Item (int index, Object value)
JScript unterstützt die Verwendung von indizierten Eigenschaften, aber nicht die Deklaration von neuen indizierten Eigenschaften.
Parameter
- index
Der nullbasierte Index des Members, dessen Wert geändert oder zurückgegeben wird.
Eigenschaftenwert
Eine ServiceDescriptionFormatExtension.
Beispiel
Console.WriteLine("Collection contains following types of elements: ")
' Display the 'Type' of the elements in collection.
Dim i As Integer
For i = 0 To myCollection.Count - 1
Console.WriteLine(myCollection(i).GetType().ToString())
Next i
Console.WriteLine("Collection contains following types of elements: ");
// Display the 'Type' of the elements in collection.
for(int i = 0;i< myCollection.Count;i++)
{
Console.WriteLine(myCollection[i].GetType().ToString());
}
Console::WriteLine( "Collection contains following types of elements: " );
// Display the 'Type' of the elements in collection.
for ( int i = 0; i < myCollection->Count; i++ )
Console::WriteLine( myCollection[ i ]->GetType() );
Console.WriteLine("Collection contains following "
+ " types of elements: ");
// Display the 'Type' of the elements in collection.
for (int i = 0; i < myCollection.get_Count(); i++) {
Console.WriteLine(myCollection.get_Item(i).GetType().ToString());
}
Plattformen
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
Siehe auch
Referenz
ServiceDescriptionFormatExtensionCollection-Klasse
ServiceDescriptionFormatExtensionCollection-Member
System.Web.Services.Description-Namespace