次の方法で共有


ProfilePropertySettings.Type プロパティ

定義

動的に生成された ProfileCommon クラスの関連付けられているプロパティの型の名前を設定または取得します。

public:
 property System::String ^ Type { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("type", DefaultValue="string")]
public string Type { get; set; }
[<System.Configuration.ConfigurationProperty("type", DefaultValue="string")>]
member this.Type : string with get, set
Public Property Type As String

プロパティ値

String

有効な完全修飾型参照、または空の文字列 ("")。 既定値は空の文字列です。

属性

次のコード例は、Type プロパティの使用方法を示しています。 このコード例は、ProfileSection クラスのために提供されている大規模な例の一部です。

// Get the current Type property value.
Console.WriteLine(
    "Current Type value: '{0}'", profilePropertySettings.Type);

// Set the Type property to "System.DateTime".
profilePropertySettings.Type = "System.DateTime";
' Get the current Type property value.
Console.WriteLine( _
    "Current Type value: '{0}'", profilePropertySettings.Type)

' Set the Type property to "System.DateTime".
profilePropertySettings.Type = "System.DateTime"

注釈

有効な型参照に設定すると、生成されたクラスの名前付きプロパティにこの型が使用されます ProfileCommon

型参照は次のように形成されます (角かっこ内の項目は必要ありません)。 Namespace.Typename, Assemblyname[,] [Version=x,] [Culture=y,] [PublicKeyToken=z]

次に例を示します。

"ExampleNameSpace.ExampleType, Example.Assembly, Version=%ASSEMBLY_VERSION%, Culture=neutral, PublicKeyToken=%MICROSOFT_PUBLICKEY%"

適用対象

こちらもご覧ください