SerializeAbsoluteContext Constructors

Definition

Initializes a new instance of the SerializeAbsoluteContext class.

Overloads

SerializeAbsoluteContext()

Initializes a new instance of the SerializeAbsoluteContext class.

SerializeAbsoluteContext(MemberDescriptor)

Initializes a new instance of the SerializeAbsoluteContext class with the option of binding to a specific member.

SerializeAbsoluteContext()

Initializes a new instance of the SerializeAbsoluteContext class.

public:
 SerializeAbsoluteContext();
public SerializeAbsoluteContext ();
Public Sub New ()

Remarks

Using the parameterless constructor indicates that this context should be used for all members.

Applies to

SerializeAbsoluteContext(MemberDescriptor)

Initializes a new instance of the SerializeAbsoluteContext class with the option of binding to a specific member.

public:
 SerializeAbsoluteContext(System::ComponentModel::MemberDescriptor ^ member);
public SerializeAbsoluteContext (System.ComponentModel.MemberDescriptor member);
public SerializeAbsoluteContext (System.ComponentModel.MemberDescriptor? member);
new System.ComponentModel.Design.Serialization.SerializeAbsoluteContext : System.ComponentModel.MemberDescriptor -> System.ComponentModel.Design.Serialization.SerializeAbsoluteContext
Public Sub New (member As MemberDescriptor)

Parameters

member
MemberDescriptor

The member to which this context is bound. Can be null.

Remarks

If member is null, this context will be used for all members.

See also

Applies to