다음을 통해 공유


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

적용 대상

추가 정보