ProfileGroupSettingsCollection.Get Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a ProfileGroupSettings object.
Overloads
Get(Int32) |
Returns the ProfileGroupSettings object at the specified index. |
Get(String) |
Returns the ProfileGroupSettings object with the specified name. |
Get(Int32)
Returns the ProfileGroupSettings object at the specified index.
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
Parameters
- index
- Int32
The index of the ProfileGroupSettings object to get.
Returns
The ProfileGroupSettings object at the specified index, or null
if there is no object at that index.
See also
Applies to
Get(String)
Returns the ProfileGroupSettings object with the specified name.
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
Parameters
- name
- String
The name of the ProfileGroupSettings object to get.
Returns
The ProfileGroupSettings object with the specified name, or null
if the name does not exist.