ConfigurationProperty コンストラクタとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > ConfigurationProperty コンストラクタの意味・解説 

ConfigurationProperty コンストラクタ (String, Type, Object)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

ConfigurationProperty クラス新しインスタンス作成します

名前空間: System.Configuration
アセンブリ: System.Configuration (system.configuration.dll 内)
構文構文

解説解説
使用例使用例

System.Configuration.ConfigurationProperty(String,Type,Object) コンストラクタ使用して構成プロパティ オブジェクトインスタンス化する方法次のコード例示します

' Initialize the _FileName
   _FileName = New ConfigurationProperty( _
   "fileName", GetType(String),
 _
   "default.txt")
// Initialize the _FileName
_FileName =
    new ConfigurationProperty("fileName",
    typeof(string), "default.txt");
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ConfigurationProperty クラス
ConfigurationProperty メンバ
System.Configuration 名前空間
ElementInformation
ConfigurationElementCollection クラス
ConfigurationElementCollectionType 列挙
ConfigurationElement クラス
ConfigurationPropertyCollection
ConfigurationSection

ConfigurationProperty コンストラクタ (String, Type, Object, ConfigurationPropertyOptions)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

ConfigurationProperty クラス新しインスタンス作成します

名前空間: System.Configuration
アセンブリ: System.Configuration (system.configuration.dll 内)
構文構文

Public Sub New ( _
    name As String, _
    type As Type, _
    defaultValue As Object, _
    options As ConfigurationPropertyOptions _
)
Dim name As String
Dim type As Type
Dim defaultValue As Object
Dim options As ConfigurationPropertyOptions

Dim instance As New ConfigurationProperty(name,
 type, defaultValue, options)
public ConfigurationProperty (
    string name,
    Type type,
    Object defaultValue,
    ConfigurationPropertyOptions options
)
public:
ConfigurationProperty (
    String^ name, 
    Type^ type, 
    Object^ defaultValue, 
    ConfigurationPropertyOptions options
)
public ConfigurationProperty (
    String name, 
    Type type, 
    Object defaultValue, 
    ConfigurationPropertyOptions options
)
public function ConfigurationProperty (
    name : String, 
    type : Type, 
    defaultValue : Object, 
    options : ConfigurationPropertyOptions
)

パラメータ

name

構成エンティティの名前。

type

構成エンティティの型。

defaultValue

構成エンティティ既定値

options

ConfigurationPropertyOptions 列挙値の 1 つ

使用例使用例

System.Configuration.ConfigurationProperty(String,Type,Object,ConfigurationPropertyOptions) コンストラクタ使用して構成プロパティ オブジェクトインスタンス化する方法次のコード例示します

' Initialize the _MaxUsers
   _MaxUsers = New ConfigurationProperty( _
   "maxUsers", GetType(Long),
 _
   Fix(1000), ConfigurationPropertyOptions.None)
// Initialize the _MaxUsers
_MaxUsers =
    new ConfigurationProperty("maxUsers",
    typeof(long), (long)1000,
    ConfigurationPropertyOptions.None);
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ConfigurationProperty クラス
ConfigurationProperty メンバ
System.Configuration 名前空間
ElementInformation
ConfigurationElementCollection クラス
ConfigurationElementCollectionType 列挙
ConfigurationElement クラス
ConfigurationPropertyCollection
ConfigurationSection

ConfigurationProperty コンストラクタ (String, Type, Object, TypeConverter, ConfigurationValidatorBase, ConfigurationPropertyOptions)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

ConfigurationProperty クラス新しインスタンス作成します

名前空間: System.Configuration
アセンブリ: System.Configuration (system.configuration.dll 内)
構文構文

Public Sub New ( _
    name As String, _
    type As Type, _
    defaultValue As Object, _
    typeConverter As TypeConverter, _
    validator As ConfigurationValidatorBase, _
    options As ConfigurationPropertyOptions _
)
Dim name As String
Dim type As Type
Dim defaultValue As Object
Dim typeConverter As TypeConverter
Dim validator As ConfigurationValidatorBase
Dim options As ConfigurationPropertyOptions

Dim instance As New ConfigurationProperty(name,
 type, defaultValue, typeConverter, validator, options)
public ConfigurationProperty (
    string name,
    Type type,
    Object defaultValue,
    TypeConverter typeConverter,
    ConfigurationValidatorBase validator,
    ConfigurationPropertyOptions options
)
public:
ConfigurationProperty (
    String^ name, 
    Type^ type, 
    Object^ defaultValue, 
    TypeConverter^ typeConverter, 
    ConfigurationValidatorBase^ validator, 
    ConfigurationPropertyOptions options
)
public ConfigurationProperty (
    String name, 
    Type type, 
    Object defaultValue, 
    TypeConverter typeConverter, 
    ConfigurationValidatorBase validator, 
    ConfigurationPropertyOptions options
)
public function ConfigurationProperty (
    name : String, 
    type : Type, 
    defaultValue : Object, 
    typeConverter : TypeConverter, 
    validator : ConfigurationValidatorBase, 
    options : ConfigurationPropertyOptions
)

パラメータ

name

構成エンティティの名前。

type

構成エンティティの型。

defaultValue

構成エンティティ既定値

typeConverter

適用するコンバータの型。

validator

使用する検証コントロール

options

ConfigurationPropertyOptions 列挙値の 1 つ

使用例使用例

System.Configuration.ConfigurationProperty(String,Type,Object,TypeConverter,ConfigurationValidatorBase,ConfigurationPropertyOptions) コンストラクタ呼び出すときに使用するパラメータ種類次のコード例示します

' Initialize the _MaxIdleTime
   Dim minTime As TimeSpan = _
   TimeSpan.FromSeconds(30)
   Dim maxTime As TimeSpan = _
   TimeSpan.FromMinutes(5)

   Dim _TimeSpanValidator = _
   New TimeSpanValidator(minTime, maxTime, False)

   _MaxIdleTime = New ConfigurationProperty( _
   "maxIdleTime", GetType(TimeSpan),
 _
   TimeSpan.FromMinutes(5), _
   TypeDescriptor.GetConverter(GetType(TimeSpan)), _
   _TimeSpanValidator, _
   ConfigurationPropertyOptions.IsRequired, _
   "[Description:This is the max idle time.]")
 // Initialize the _MaxIdleTime
 TimeSpan minTime = TimeSpan.FromSeconds(30);
 TimeSpan maxTime = TimeSpan.FromMinutes(5);

 ConfigurationValidatorBase _TimeSpanValidator =
     new TimeSpanValidator(minTime, maxTime, false);

 _MaxIdleTime =
    new ConfigurationProperty("maxIdleTime",
typeof(TimeSpan), TimeSpan.FromMinutes(5),
TypeDescriptor.GetConverter(typeof(TimeSpan)),
_TimeSpanValidator,
ConfigurationPropertyOptions.IsRequired,
"[Description:This is the max idle time.]");
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ConfigurationProperty クラス
ConfigurationProperty メンバ
System.Configuration 名前空間
ElementInformation
ConfigurationElementCollection クラス
ConfigurationElementCollectionType 列挙
ConfigurationElement クラス
ConfigurationPropertyCollection
ConfigurationSection

ConfigurationProperty コンストラクタ (String, Type, Object, TypeConverter, ConfigurationValidatorBase, ConfigurationPropertyOptions, String)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

ConfigurationProperty クラス新しインスタンス作成します

名前空間: System.Configuration
アセンブリ: System.Configuration (system.configuration.dll 内)
構文構文

Public Sub New ( _
    name As String, _
    type As Type, _
    defaultValue As Object, _
    typeConverter As TypeConverter, _
    validator As ConfigurationValidatorBase, _
    options As ConfigurationPropertyOptions, _
    description As String _
)
Dim name As String
Dim type As Type
Dim defaultValue As Object
Dim typeConverter As TypeConverter
Dim validator As ConfigurationValidatorBase
Dim options As ConfigurationPropertyOptions
Dim description As String

Dim instance As New ConfigurationProperty(name,
 type, defaultValue, typeConverter, validator, options, description)
public ConfigurationProperty (
    string name,
    Type type,
    Object defaultValue,
    TypeConverter typeConverter,
    ConfigurationValidatorBase validator,
    ConfigurationPropertyOptions options,
    string description
)
public:
ConfigurationProperty (
    String^ name, 
    Type^ type, 
    Object^ defaultValue, 
    TypeConverter^ typeConverter, 
    ConfigurationValidatorBase^ validator, 
    ConfigurationPropertyOptions options, 
    String^ description
)
public ConfigurationProperty (
    String name, 
    Type type, 
    Object defaultValue, 
    TypeConverter typeConverter, 
    ConfigurationValidatorBase validator, 
    ConfigurationPropertyOptions options, 
    String description
)
public function ConfigurationProperty (
    name : String, 
    type : Type, 
    defaultValue : Object, 
    typeConverter : TypeConverter, 
    validator : ConfigurationValidatorBase, 
    options : ConfigurationPropertyOptions, 
    description : String
)

パラメータ

name

構成エンティティの名前。

type

構成エンティティの型。

defaultValue

構成エンティティ既定値

typeConverter

適用するコンバータの型。

validator

使用する検証コントロール

options

ConfigurationPropertyOptions 列挙値の 1 つ

description

構成エンティティ説明

使用例使用例

System.Configuration.ConfigurationProperty(String,Type,Object,TypeConverter,ConfigurationValidatorBase,ConfigurationPropertyOptions,String) コンストラクタ使用して構成プロパティ オブジェクトインスタンス化する方法次のコード例示します

' Initialize the _MaxIdleTime
   Dim minTime As TimeSpan = _
   TimeSpan.FromSeconds(30)
   Dim maxTime As TimeSpan = _
   TimeSpan.FromMinutes(5)

   Dim _TimeSpanValidator = _
   New TimeSpanValidator(minTime, maxTime, False)

   _MaxIdleTime = New ConfigurationProperty( _
   "maxIdleTime", GetType(TimeSpan),
 _
   TimeSpan.FromMinutes(5), _
   TypeDescriptor.GetConverter(GetType(TimeSpan)), _
   _TimeSpanValidator, _
   ConfigurationPropertyOptions.IsRequired, _
   "[Description:This is the max idle time.]")
 // Initialize the _MaxIdleTime
 TimeSpan minTime = TimeSpan.FromSeconds(30);
 TimeSpan maxTime = TimeSpan.FromMinutes(5);

 ConfigurationValidatorBase _TimeSpanValidator =
     new TimeSpanValidator(minTime, maxTime, false);

 _MaxIdleTime =
    new ConfigurationProperty("maxIdleTime",
typeof(TimeSpan), TimeSpan.FromMinutes(5),
TypeDescriptor.GetConverter(typeof(TimeSpan)),
_TimeSpanValidator,
ConfigurationPropertyOptions.IsRequired,
"[Description:This is the max idle time.]");
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ConfigurationProperty クラス
ConfigurationProperty メンバ
System.Configuration 名前空間
ElementInformation
ConfigurationElementCollection クラス
ConfigurationElementCollectionType 列挙
ConfigurationElement クラス
ConfigurationPropertyCollection
ConfigurationSection

ConfigurationProperty コンストラクタ (String, Type)

メモ : このコンストラクタは、.NET Framework version 2.0新しく追加されたものです。

ConfigurationProperty クラス新しインスタンス作成します

名前空間: System.Configuration
アセンブリ: System.Configuration (system.configuration.dll 内)
構文構文

Dim name As String
Dim type As Type

Dim instance As New ConfigurationProperty(name,
 type)
public ConfigurationProperty (
    string name,
    Type type
)
public:
ConfigurationProperty (
    String^ name, 
    Type^ type
)
public ConfigurationProperty (
    String name, 
    Type type
)
public function ConfigurationProperty (
    name : String, 
    type : Type
)

パラメータ

name

構成エンティティの名前。

type

構成エンティティの型。

プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
ConfigurationProperty クラス
ConfigurationProperty メンバ
System.Configuration 名前空間

ConfigurationProperty コンストラクタ

この ConfigurationProperty の新しインスタンス作成します
オーバーロードの一覧オーバーロードの一覧

名前 説明
ConfigurationProperty (String, Type) ConfigurationProperty クラス新しインスタンス作成します
ConfigurationProperty (String, Type, Object) ConfigurationProperty クラス新しインスタンス作成します
ConfigurationProperty (String, Type, Object, ConfigurationPropertyOptions) ConfigurationProperty クラス新しインスタンス作成します
ConfigurationProperty (String, Type, Object, TypeConverter, ConfigurationValidatorBase, ConfigurationPropertyOptions) ConfigurationProperty クラス新しインスタンス作成します
ConfigurationProperty (String, Type, Object, TypeConverter, ConfigurationValidatorBase, ConfigurationPropertyOptions, String) ConfigurationProperty クラス新しインスタンス作成します
参照参照

関連項目

ConfigurationProperty クラス
ConfigurationProperty メンバ
System.Configuration 名前空間



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「ConfigurationProperty コンストラクタ」の関連用語

ConfigurationProperty コンストラクタのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



ConfigurationProperty コンストラクタのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS