Udostępnij za pośrednictwem


ServiceDescriptionCollection.Item[] Właściwość

Definicja

Pobiera lub ustawia ServiceDescription wystąpienie określone przez przekazany parametr.

Przeciążenia

Item[Int32]

Pobiera lub ustawia wartość dla określonego ServiceDescription indeksu opartego na zerze.

Item[String]

ServiceDescription Pobiera określony przez jego TargetNamespace właściwość.

Item[Int32]

Pobiera lub ustawia wartość dla określonego ServiceDescription indeksu opartego na zerze.

public:
 property System::Web::Services::Description::ServiceDescription ^ default[int] { System::Web::Services::Description::ServiceDescription ^ get(int index); void set(int index, System::Web::Services::Description::ServiceDescription ^ value); };
public System.Web.Services.Description.ServiceDescription this[int index] { get; set; }
member this.Item(int) : System.Web.Services.Description.ServiceDescription with get, set
Default Public Property Item(index As Integer) As ServiceDescription

Parametry

index
Int32

Indeks oparty na zerze, ServiceDescription którego wartość jest modyfikowana lub zwracana.

Wartość właściwości

ServiceDescription

Wartość obiektu ServiceDescription w określonym indeksie.

Przykłady

// Display element properties in the collection using 
// the Item property.
for ( int i = 0; i < myCollection->Count; i++ )
   Console::WriteLine( myCollection[ i ]->TargetNamespace );
// Display element properties in collection using 'Item' property.
for(int i=0; i<myCollection.Count; i++)
{
   Console.WriteLine(myCollection[i].TargetNamespace);
}
' Display element properties in collection using 'Item' property.
Dim i As Integer
For i = 0 To myCollection.Count - 1
   Console.WriteLine(myCollection(i).TargetNamespace)
Next i

Dotyczy

Item[String]

ServiceDescription Pobiera określony przez jego TargetNamespace właściwość.

public:
 property System::Web::Services::Description::ServiceDescription ^ default[System::String ^] { System::Web::Services::Description::ServiceDescription ^ get(System::String ^ ns); };
public System.Web.Services.Description.ServiceDescription this[string ns] { get; }
member this.Item(string) : System.Web.Services.Description.ServiceDescription
Default Public ReadOnly Property Item(ns As String) As ServiceDescription

Parametry

ns
String

Zwrócona ServiceDescription przestrzeń nazw.

Wartość właściwości

ServiceDescription

Określony ServiceDescription przez jego właściwość przestrzeni nazw.

Przykłady

// Get a ServiceDescription in the collection using 
// the Item property.
ServiceDescription^ myServiceDescription = myCollection[ "http://tempuri1.org/" ];
// Get a 'ServiceDescription' object in collection using 'Item'.
ServiceDescription myServiceDescription = myCollection["http://tempuri1.org/"];
' Get a 'ServiceDescription' object in collection using 'Item'.
Dim myServiceDescription As ServiceDescription = myCollection("http://tempuri1.org/")

Dotyczy