ProfileGroupSettingsCollection.Get 方法

定义

返回一个 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

指定索引处的 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

具有指定名称的 ProfileGroupSettings 对象;如果该名称不存在,则为 null

另请参阅

适用于