ServiceDescriptionCollection.Item[] Proprietà

Definizione

Ottiene o imposta l'istanza di ServiceDescription specificata dal parametro passato.

Overload

Item[Int32]

Ottiene o imposta il valore di un oggetto ServiceDescription in corrispondenza dell'indice in base zero specificato.

Item[String]

Ottiene un oggetto ServiceDescription specificato dalla relativa proprietà TargetNamespace.

Item[Int32]

Origine:
ServiceDescriptions.cs
Origine:
ServiceDescriptions.cs
Origine:
ServiceDescriptions.cs

Ottiene o imposta il valore di un oggetto ServiceDescription in corrispondenza dell'indice in base zero specificato.

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

Parametri

index
Int32

Indice in base zero di ServiceDescription il cui valore viene modificato o restituito.

Valore della proprietà

Valore di un ServiceDescription in corrispondenza dell'indice specificato.

Esempio

// 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

Si applica a

Item[String]

Origine:
ServiceDescriptions.cs
Origine:
ServiceDescriptions.cs
Origine:
ServiceDescriptions.cs

Ottiene un oggetto ServiceDescription specificato dalla relativa proprietà TargetNamespace.

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

Parametri

ns
String

Spazio dei nomi dell'oggetto ServiceDescription restituito.

Valore della proprietà

Oggetto ServiceDescription specificato dalla relativa proprietà dello spazio dei nomi.

Esempio

// 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/")

Si applica a