ProfileGroupSettingsCollection.Get 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回一个 ProfileGroupSettings 对象。
重载
Get(Int32) |
返回位于指定索引处的 ProfileGroupSettings 对象。 |
Get(String) |
返回具有指定名称的 ProfileGroupSettings 对象。 |
Get(Int32)
返回位于指定索引处的 ProfileGroupSettings 对象。
public:
System::Web::Configuration::ProfileGroupSettings ^ Get(int index);
public System.Web.Configuration.ProfileGroupSettings Get (int index);
member this.Get : int -> System.Web.Configuration.ProfileGroupSettings
Public Function Get (index As Integer) As ProfileGroupSettings
参数
- index
- Int32
要获取的 ProfileGroupSettings 对象的索引。
返回
指定索引处的 ProfileGroupSettings 对象;如果该索引处没有对象,则为 null
。
另请参阅
适用于
Get(String)
返回具有指定名称的 ProfileGroupSettings 对象。
public:
System::Web::Configuration::ProfileGroupSettings ^ Get(System::String ^ name);
public System.Web.Configuration.ProfileGroupSettings Get (string name);
member this.Get : string -> System.Web.Configuration.ProfileGroupSettings
Public Function Get (name As String) As ProfileGroupSettings
参数
- name
- String
要获取的 ProfileGroupSettings 对象的名称。
返回
具有指定名称的 ProfileGroupSettings 对象;如果该名称不存在,则为 null
。