PropertyInformation.IsRequired プロパティ

定義

構成属性が必須かどうかを指定する値を取得します。

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

プロパティ値

PropertyInformation オブジェクトが必須の場合は true。それ以外の場合は false

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

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

適用対象