BindingStatus Enumeration
Enum to indicate the status of a binding.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: Microsoft.Data.Tools.Model
Assembly: Microsoft.Data.Tools.Model (in Microsoft.Data.Tools.Model.dll)
Syntax
'Declaration
<FlagsAttribute> _
Public Enumeration BindingStatus
'Usage
Dim instance As BindingStatus
[FlagsAttribute]
public enum BindingStatus
[FlagsAttribute]
public enum class BindingStatus
[<FlagsAttribute>]
type BindingStatus
public enum BindingStatus
Members
Member name | Description | |
---|---|---|
None | ||
Known | ||
Unknown | ||
Duplicate | ||
Undefined |
Remarks
Following are the definitions of the possible status values:
Known
Indicates that the Name is known and matches the name of exactly one item.Unknown
Indicates that no item exists with the expected Name.Duplicate
Indicates that more than one item exists with the expected Name.Undefined
Indicates an unspecified reference, i.e. it corresponds to the absence of an attribute (or a validName value for an attribute) for the attribute that would normallyspecify the Name to follow for the reference.None
Initial state of the binding, before we try to resolve it.