MetadataSection.Identifier 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
메타데이터의 식별자를 가져오거나 설정합니다.
public:
property System::String ^ Identifier { System::String ^ get(); void set(System::String ^ value); };
public string Identifier { get; set; }
member this.Identifier : string with get, set
Public Property Identifier As String
속성 값
메타데이터의 식별자입니다. 기본값은 null
입니다.
예제
다음 코드 예제에서는 MetadataSection에서 System.ServiceModel.Description.MetadataResolver 개체를 검색한 후 이 개체에서 반복하여 Identifier 및 Dialect 속성을 콘솔에 쓰는 방법을 보여 줍니다.
// Get metadata documents.
Console.WriteLine("URI of the metadata documents retreived:");
MetadataExchangeClient metaTransfer
= new MetadataExchangeClient(httpGetMetaAddress.Uri, MetadataExchangeClientMode.HttpGet);
metaTransfer.ResolveMetadataReferences = true;
MetadataSet otherDocs = metaTransfer.GetMetadata();
foreach (MetadataSection doc in otherDocs.MetadataSections)
Console.WriteLine(doc.Dialect + " : " + doc.Identifier);
설명
이 MetadataSection에 있는 메타데이터의 식별자입니다. 값은 메타데이터 형식에 따라 다릅니다.