Udostępnij za pośrednictwem


ProfilePropertySettings.Type Właściwość

Definicja

Pobiera lub ustawia nazwę typu skojarzonej właściwości w dynamicznie generowanej ProfileCommon klasie.

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

Wartość właściwości

String

Prawidłowe, w pełni kwalifikowane odwołanie do typu lub pusty ciąg (""). Wartość domyślna to pusty ciąg.

Atrybuty

Przykłady

W poniższym przykładzie kodu pokazano, jak używać Type właściwości . Ten przykład kodu jest częścią większego przykładu udostępnionego ProfileSection dla klasy .

// 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"

Uwagi

W przypadku ustawienia prawidłowego odwołania do typu ten typ jest używany dla nazwanej właściwości w wygenerowanej ProfileCommon klasie.

Odwołanie do typu jest tworzone w następujący sposób (elementy w nawiasach kwadratowych nie są wymagane): Namespace.Typename, Assemblyname[,] [Version=x,] [Culture=y,] [PublicKeyToken=z]

Na przykład:

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

Dotyczy

Zobacz też