PropertyAttributes Enum

Definition

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
PropertyAttributes
Attributes

Fields

NotSupported 0

The property is not supported by the provider.

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.

Required 1

The user must specify a value for this property before the data source is initialized.

Write 1024

The user can write to the property.

Applies to