ServiceDescriptionCollection.Item[] Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene o establece la instancia de ServiceDescription especificada por el parámetro que se ha pasado.
Sobrecargas
Item[Int32] |
Obtiene o establece el valor de ServiceDescription en el índice de base cero especificado. |
Item[String] |
Obtiene un objeto ServiceDescription especificado mediante su propiedad TargetNamespace. |
Item[Int32]
Obtiene o establece el valor de ServiceDescription en el índice de base cero especificado.
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
Parámetros
- index
- Int32
El índice de base cero del objeto ServiceDescription cuyo valor se ha modificado o devuelto.
Valor de propiedad
El valor de un ServiceDescription en el índice especificado.
Ejemplos
// 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
Se aplica a
Item[String]
Obtiene un objeto ServiceDescription especificado mediante su propiedad 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
Parámetros
- ns
- String
Espacio de nombres del objeto ServiceDescription devuelto.
Valor de propiedad
Objeto ServiceDescription especificado mediante su propiedad de espacio de nombres.
Ejemplos
// 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/")