共用方式為


ConfigurationAttribute.GetMetadata(String) 方法

定義

從 IIS 7 組態系統取得屬性中繼資料。

public:
 System::Object ^ GetMetadata(System::String ^ metadataType);
public object GetMetadata (string metadataType);
member this.GetMetadata : string -> obj
Public Function GetMetadata (metadataType As String) As Object

參數

metadataType
String

要傳回之中繼資料的名稱。

傳回

符合 IIS 7 組態系統要求 metadataType 的屬性中繼資料。

範例

下列範例會取得每個組態屬性的中繼資料。 此程式碼範例是提供給 類別之較大範例的 ConfigurationAttribute 一部分。

// Get the attributes again, after the commit changes.
Configuration config2 = manager.GetApplicationHostConfiguration();
configSection = config2.GetSection("system.web/anonymousIdentification");
configAttributeCollection = configSection.Attributes;
Console.WriteLine("There are " +
    configAttributeCollection.Count.ToString() +
    " Configuration attributes.");
attribute = configAttributeCollection[1];
Console.WriteLine("metadata: " +
    attribute.GetMetadata("encryptionProvider"));
// Display each configuration attribute with properties and metadata.
foreach (ConfigurationAttribute configAttribute in configAttributeCollection)
{
    Console.WriteLine("\t{0}\t{1}\t{2}\t{3}",
         configAttribute.Name,
         configAttribute.Value,
         configAttribute.IsProtected,
         configAttribute.GetMetadata("encryptionProvider"));
}

適用於

另請參閱