XdsObjects Help file
XdsObjects Namespace / XdsPerson Class / DOB Property



In This Topic
    DOB Property
    In This Topic
    The person's date of birth
    Syntax
    Public Property DOB As Nullable(Of Date)
    Dim instance As XdsPerson
    Dim value As Nullable(Of Date)
     
    instance.DOB = value
     
    value = instance.DOB
    public Nullable<DateTime> DOB {get; set;}
    public:
    property Nullable<DateTime> DOB {
       Nullable<DateTime> get();
       void set (    Nullable<DateTime> value);
    }
    Remarks
    As this property is System.Nullable, it allows a null value to indicate an unknown or unavailable date.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also