SerializeAbsoluteContext Constructors
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.
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.