BindingMemberInfo Structure
Contains information that enables a Binding to resolve a data binding to either the property of an object or the property of the current object in a list of objects.
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The BindingMemberInfo type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | BindingField | Gets the property name of the data-bound object. |
![]() | BindingMember | Gets the information that is used to specify the property name of the data-bound object. |
![]() | BindingPath | Gets the property name, or the period-delimited hierarchy of property names, that comes before the property name of the data-bound object. |
| Name | Description | |
|---|---|---|
![]() | Equals | Determines whether the specified object is equal to this BindingMemberInfo. (Overrides ValueType.Equals(Object).) |
![]() | GetHashCode | Returns the hash code for this BindingMemberInfo. (Overrides ValueType.GetHashCode().) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | ToString | Returns the fully qualified type name of this instance. (Inherited from ValueType.) |
| Name | Description | |
|---|---|---|
![]() ![]() | Equality | Determines whether two BindingMemberInfo objects are equal. |
![]() ![]() | Inequality | Determines whether two BindingMemberInfo objects are not equal. |
The BindingMemberInfo is returned by the BindingMemberInfo property of the Binding class.
The BindingMemberInfo is created from the string passed to the BindingMemberInfo constructor.
The following code example prints the BindingPath, BindingField, BindingMember for each control on a form.
private void PrintBindingMemberInfo() { foreach(Control c in this.Controls) { foreach(Binding b in c.DataBindings) { Console.WriteLine("\n" + c.ToString()); BindingMemberInfo bInfo = b.BindingMemberInfo; Console.WriteLine("Binding Path \t" + bInfo.BindingPath); Console.WriteLine("Binding Field \t" + bInfo.BindingField); Console.WriteLine("Binding Member \t" + bInfo.BindingMember); } } }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
