다음을 통해 공유


MetadataSection.Identifier 속성

정의

메타데이터의 식별자를 가져오거나 설정합니다.

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

속성 값

String

메타데이터의 식별자입니다. 기본값은 null입니다.

예제

다음 코드 예제에서는 MetadataSection에서 System.ServiceModel.Description.MetadataResolver 개체를 검색한 후 이 개체에서 반복하여 IdentifierDialect 속성을 콘솔에 쓰는 방법을 보여 줍니다.

// 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에 있는 메타데이터의 식별자입니다. 값은 메타데이터 형식에 따라 다릅니다.

적용 대상