ResourceProperty 构造函数

为开放属性初始化一个新的 ResourceProperty

命名空间:  System.Data.Services.Providers
程序集:  Microsoft.Data.Services(在 Microsoft.Data.Services.dll 中)

语法

声明
Public Sub New ( _
    name As String, _
    kind As ResourcePropertyKind, _
    propertyResourceType As ResourceType _
)
用法
Dim name As String
Dim kind As ResourcePropertyKind
Dim propertyResourceType As ResourceType

Dim instance As New ResourceProperty(name, kind, _
    propertyResourceType)
public ResourceProperty(
    string name,
    ResourcePropertyKind kind,
    ResourceType propertyResourceType
)
public:
ResourceProperty(
    String^ name, 
    ResourcePropertyKind kind, 
    ResourceType^ propertyResourceType
)
new : 
        name:string * 
        kind:ResourcePropertyKind * 
        propertyResourceType:ResourceType -> ResourceProperty
public function ResourceProperty(
    name : String, 
    kind : ResourcePropertyKind, 
    propertyResourceType : ResourceType
)

参数

  • name
    类型:System.String
    字符串形式的属性的属性名称。

注释

在 XML 名称中(但不是在 EDM 的标识符中)允许以下 Unicode 字符:

  1. U+00B7 '•'

  2. U+0387 '·'

  3. U+06DE '۞'

  4. U+212E '℮'

如果您的属性名称可以包含这些字符,请确保它们已在提供程序实现中正确地进行转义。 EncodeName(String) 方法将不会正确地转义这些无效的 EDM 字符。

请参阅

参考

ResourceProperty 类

System.Data.Services.Providers 命名空间