PropertyAttributes Enum
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.
Caution
PropertyAttributes has been deprecated. http://go.microsoft.com/fwlink/?linkid=14202
Specifies the attributes of a property.
This enumeration supports a bitwise combination of its member values.
public enum class PropertyAttributes
[System.Flags]
public enum PropertyAttributes
[System.Flags]
[System.Obsolete("PropertyAttributes has been deprecated. http://go.microsoft.com/fwlink/?linkid=14202")]
public enum PropertyAttributes
[<System.Flags>]
type PropertyAttributes =
[<System.Flags>]
[<System.Obsolete("PropertyAttributes has been deprecated. http://go.microsoft.com/fwlink/?linkid=14202")>]
type PropertyAttributes =
Public Enum PropertyAttributes
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
NotSupported | 0 | The property is not supported by the provider. |
Required | 1 | The user must specify a value for this property before the data source is initialized. |
Optional | 2 | The user does not need to specify a value for this property before the data source is initialized. |
Read | 512 | The user can read the property. |
Write | 1024 | The user can write to the property. |