PropertyAttributes 枚举

定义

注意

PropertyAttributes has been deprecated. http://go.microsoft.com/fwlink/?linkid=14202

指定属性的特性。

此枚举支持其成员值的按位组合。

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
继承
PropertyAttributes
属性

字段

NotSupported 0

提供程序不支持该属性。

Optional 2

在初始化数据源之前,用户不必为此属性指定值。

Read 512

用户可以读取该属性。

Required 1

在初始化数据源之前,用户必须为此属性指定值。

Write 1024

用户可以写入该属性。

适用于