PropertyInformation.IsKey プロパティ

定義

構成属性がキーであるかどうかを指定する値を取得します。

public:
 property bool IsKey { bool get(); };
public bool IsKey { get; }
member this.IsKey : bool
Public ReadOnly Property IsKey As Boolean

プロパティ値

構成属性がキーである場合は true。それ以外の場合は false

次のコード例では、 プロパティの使用方法を IsKey 示します。 このコード例は、PropertyInformation クラスのために提供されている大規模な例の一部です。

// Display the IsKey property.
Console.WriteLine("IsKey: {0}", propertyItem.IsKey);
' Display the IsKey property.
Console.WriteLine("IsKey: {0}", propertyItem.IsKey)

適用対象