ProfileSettingsCollection.Item[] 属性

定义

获取或设置指定的 ProfileSettings 对象。

重载

Item[Int32]

获取或设置集合中指定数字索引处的 ProfileSettings 对象。

Item[String]

根据集合中的指定键获取 ProfileSettings 对象。

Item[Int32]

获取或设置集合中指定数字索引处的 ProfileSettings 对象。

public:
 property System::Web::Configuration::ProfileSettings ^ default[int] { System::Web::Configuration::ProfileSettings ^ get(int index); void set(int index, System::Web::Configuration::ProfileSettings ^ value); };
public System.Web.Configuration.ProfileSettings this[int index] { get; set; }
member this.Item(int) : System.Web.Configuration.ProfileSettings with get, set
Default Public Property Item(index As Integer) As ProfileSettings

参数

index
Int32

集合中 ProfileSettings 对象的索引。

属性值

ProfileSettings

指定索引处的 ProfileSettings 对象;如果该索引处没有对象,则为 null

示例

下面的代码示例说明如何使用 Item[] 方法。 此代码示例是为类提供的大型示例的 HealthMonitoringSection 一部分。

profileSetting = healthMonitoringSection.Profiles[i];
profileSetting = healthMonitoringSection.Profiles(i)

另请参阅

适用于

Item[String]

根据集合中的指定键获取 ProfileSettings 对象。

public:
 property System::Web::Configuration::ProfileSettings ^ default[System::String ^] { System::Web::Configuration::ProfileSettings ^ get(System::String ^ key); };
public System.Web.Configuration.ProfileSettings this[string key] { get; }
member this.Item(string) : System.Web.Configuration.ProfileSettings
Default Public ReadOnly Property Item(key As String) As ProfileSettings

参数

key
String

集合中包含的 ProfileSettings 对象的名称。

属性值

ProfileSettings

ProfileSettings 对象。

适用于