TypeElementCollection.Item[] Propriedade
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Recebe ou define um elemento na coleção.
Sobrecargas
| Name | Description |
|---|---|
| Item[Int32] |
Obtém ou define o elemento num índice especificado na coleção. |
| Item[Object] |
Obtém ou define o TypeElement que tem a chave especificada na coleção. |
Item[Int32]
Obtém ou define o elemento num índice especificado na coleção.
public:
property System::Web::Services::Configuration::TypeElement ^ default[int] { System::Web::Services::Configuration::TypeElement ^ get(int index); void set(int index, System::Web::Services::Configuration::TypeElement ^ value); };
public System.Web.Services.Configuration.TypeElement this[int index] { get; set; }
member this.Item(int) : System.Web.Services.Configuration.TypeElement with get, set
Default Public Property Item(index As Integer) As TypeElement
Parâmetros
- index
- Int32
O índice baseado em zero na coleção.
Valor de Propriedade
O TypeElement que existe no índice especificado.
Aplica-se a
Item[Object]
Obtém ou define o TypeElement que tem a chave especificada na coleção.
public:
property System::Web::Services::Configuration::TypeElement ^ default[System::Object ^] { System::Web::Services::Configuration::TypeElement ^ get(System::Object ^ key); void set(System::Object ^ key, System::Web::Services::Configuration::TypeElement ^ value); };
public System.Web.Services.Configuration.TypeElement this[object key] { get; set; }
member this.Item(obj) : System.Web.Services.Configuration.TypeElement with get, set
Default Public Property Item(key As Object) As TypeElement
Parâmetros
- key
- Object
A chave para TypeElement obter ou definir na coleção.
Valor de Propriedade
O TypeElement com a chave especificada.
Exceções
A TypeElement com a chave especificada não foi encontrada na coleção.