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

Применяется к

См. также раздел