ProtocolElementCollection.Item[] 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置集合中的元素。
重载
Item[Int32] |
获取或设置集合中指定索引处的元素。 |
Item[Object] |
获取或设置集合中有指定键的 ProtocolElement。 |
Item[Int32]
获取或设置集合中指定索引处的元素。
public:
property System::Web::Services::Configuration::ProtocolElement ^ default[int] { System::Web::Services::Configuration::ProtocolElement ^ get(int index); void set(int index, System::Web::Services::Configuration::ProtocolElement ^ value); };
public System.Web.Services.Configuration.ProtocolElement this[int index] { get; set; }
member this.Item(int) : System.Web.Services.Configuration.ProtocolElement with get, set
Default Public Property Item(index As Integer) As ProtocolElement
参数
- index
- Int32
集合中从零开始的索引。
属性值
位于指定索引位置的 ProtocolElement。
适用于
Item[Object]
获取或设置集合中有指定键的 ProtocolElement。
public:
property System::Web::Services::Configuration::ProtocolElement ^ default[System::Object ^] { System::Web::Services::Configuration::ProtocolElement ^ get(System::Object ^ key); void set(System::Object ^ key, System::Web::Services::Configuration::ProtocolElement ^ value); };
public System.Web.Services.Configuration.ProtocolElement this[object key] { get; set; }
member this.Item(obj) : System.Web.Services.Configuration.ProtocolElement with get, set
Default Public Property Item(key As Object) As ProtocolElement
参数
- key
- Object
集合中要获取或设置的 ProtocolElement 的键。
属性值
具有指定键的 ProtocolElement。
例外
在集合中没有找到具有指定键的 ProtocolElement。