ChoiceAttribute.Value 属性

获取或设置映射到枚举值的选项值。

命名空间:  Microsoft.SharePoint.Linq
程序集:  Microsoft.SharePoint.Linq(位于 Microsoft.SharePoint.Linq.dll 中)

语法

声明
Public Property Value As String
    Get
    Set
用法
Dim instance As ChoiceAttribute
Dim value As String

value = instance.Value

instance.Value = value
public string Value { get; set; }

属性值

类型:System.String
表示一个选择值映射到枚举值String

示例

以下是在使用Value的一个示例:

public enum TaskStatusChoices : int {

Invalid,

None,

[Choice(Value="Not Started")]
NotStarted,

[Choice(Value="In Progress")]
InProgress,

[Choice(Value="Completed")]
Completed,

[Choice(Value="Deferred")]
Deferred,

[Choice(Value="Waiting on someone else")]
WaitingOnSomeoneElse,
}

另请参阅

引用

ChoiceAttribute 类

ChoiceAttribute 成员

Microsoft.SharePoint.Linq 命名空间