ServiceDescriptionCollection.Item[] Özellik
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
geçirilen parametresi tarafından belirtilen örneği alır veya ayarlar ServiceDescription .
Aşırı Yüklemeler
Item[Int32] |
Belirtilen sıfır tabanlı dizinde değerini ServiceDescription alır veya ayarlar. |
Item[String] |
Özelliği tarafından belirtileni ServiceDescription TargetNamespace alır. |
Item[Int32]
Belirtilen sıfır tabanlı dizinde değerini ServiceDescription alır veya ayarlar.
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
Parametreler
- index
- Int32
Değeri değiştirilen veya döndürülen öğesinin ServiceDescription sıfır tabanlı dizini.
Özellik Değeri
Belirtilen dizindeki bir ServiceDescription değeri.
Örnekler
// 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
Şunlara uygulanır
Item[String]
Özelliği tarafından belirtileni ServiceDescription TargetNamespace alır.
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
Parametreler
- ns
- String
Döndürülen öğesinin ServiceDescription ad alanı.
Özellik Değeri
Ad ServiceDescription alanı özelliği tarafından belirtilen.
Örnekler
// 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/")