XmlSchemaElement.IsNillable Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets information that indicates if xsi:nil
can occur in the instance data. Indicates if an explicit nil value can be assigned to the element.
public:
property bool IsNillable { bool get(); void set(bool value); };
public bool IsNillable { get; set; }
member this.IsNillable : bool with get, set
Public Property IsNillable As Boolean
Property Value
If nillable is true
, this enables an instance of the element to have the nil
attribute set to true
. The nil
attribute is defined as part of the XML Schema namespace for instances. The default is false
. Optional.
Remarks
This applies to element content and not the attributes of the element.