ProfilePropertySettingsCollection.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 ProfileSection object.
Overloads
Get(Int32) |
Returns the ProfileSection object at the specified index. |
Get(String) |
Returns the ProfileSection object with the specified name. |
Get(Int32)
Returns the ProfileSection object at the specified index.
public:
System::Web::Configuration::ProfilePropertySettings ^ Get(int index);
public System.Web.Configuration.ProfilePropertySettings Get (int index);
member this.Get : int -> System.Web.Configuration.ProfilePropertySettings
Public Function Get (index As Integer) As ProfilePropertySettings
Parameters
- index
- Int32
The index of the ProfileSection to get.
Returns
The ProfileSection object at the specified index, or null
if there is no object at that index.
See also
Applies to
Get(String)
Returns the ProfileSection object with the specified name.
public:
System::Web::Configuration::ProfilePropertySettings ^ Get(System::String ^ name);
public System.Web.Configuration.ProfilePropertySettings Get (string name);
member this.Get : string -> System.Web.Configuration.ProfilePropertySettings
Public Function Get (name As String) As ProfilePropertySettings
Parameters
- name
- String
The name of the ProfileSection to get.
Returns
The ProfileSection object with the specified name, or null
if the name does not exist.