Share via


SyndicationCategory.Scheme 속성

정의

범주의 체계를 가져오거나 설정합니다.

public:
 property System::String ^ Scheme { System::String ^ get(); void set(System::String ^ value); };
public string Scheme { get; set; }
member this.Scheme : string with get, set
Public Property Scheme As String

속성 값

String

범주의 체계입니다.

예제

다음 XML에서는 Scheme 속성이 Atom 1.0으로 serialize되는 방법을 보여 줍니다.

<category customAttribute="value" term="FeedCategory" label="CategoryLabel" scheme="CategoryScheme"/>  

다음 XML에서는 Scheme 속성이 RSS 2.0으로 serialize되는 방법을 보여 줍니다.

<category customAttribute="value" domain="CategoryScheme">FeedCategory</category>  

설명

Atom 1.0 Scheme 으로 serialize되면 속성이 요소의 특성에 scheme <category> 기록됩니다.

RSS 2.0 Scheme 으로 serialize되면 속성이 요소의 특성에 domain <category> 기록됩니다.

적용 대상