ServiceDescriptionCollection.Item[] Vlastnost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá nebo nastaví ServiceDescription instanci určenou předaný parametr.
Přetížení
Item[Int32] |
Získá nebo nastaví hodnotu ServiceDescription v zadaném indexu založeném na nule. |
Item[String] |
ServiceDescription Získá zadaný jeho TargetNamespace vlastností. |
Item[Int32]
- Zdroj:
- ServiceDescriptions.cs
- Zdroj:
- ServiceDescriptions.cs
- Zdroj:
- ServiceDescriptions.cs
Získá nebo nastaví hodnotu ServiceDescription v zadaném indexu založeném na nule.
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
Index ServiceDescription od nuly, jehož hodnota je upravena nebo vrácena.
Hodnota vlastnosti
Hodnota v zadaném indexu ServiceDescription .
Příklady
// 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
Platí pro
Item[String]
- Zdroj:
- ServiceDescriptions.cs
- Zdroj:
- ServiceDescriptions.cs
- Zdroj:
- ServiceDescriptions.cs
ServiceDescription Získá zadaný jeho TargetNamespace vlastností.
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
Obor názvů vrácených hodnot ServiceDescription .
Hodnota vlastnosti
A ServiceDescription určený jeho obor názvů vlastnost.
Příklady
// 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/")