IUpdatable.CreateResource 方法
创建指定类型并属于指定容器的资源。
命名空间: System.Data.Services
程序集: Microsoft.Data.Services(在 Microsoft.Data.Services.dll 中)
语法
声明
Function CreateResource ( _
containerName As String, _
fullTypeName As String _
) As Object
用法
Dim instance As IUpdatable
Dim containerName As String
Dim fullTypeName As String
Dim returnValue As Object
returnValue = instance.CreateResource(containerName, _
fullTypeName)
Object CreateResource(
string containerName,
string fullTypeName
)
Object^ CreateResource(
String^ containerName,
String^ fullTypeName
)
abstract CreateResource :
containerName:string *
fullTypeName:string -> Object
function CreateResource(
containerName : String,
fullTypeName : String
) : Object
参数
- containerName
类型:System.String
资源所属实体集的名称。
- fullTypeName
类型:System.String
资源的完全命名空间限定类型名称。
返回值
类型:System.Object
表示指定类型的资源并属于指定容器的对象。
注释
调用 CreateResource 以按 HTTP POST 方法插入新资源。 第一个参数指向资源所属的容器,第二个参数是需要创建的资源类型的命名空间限定名称。
使用继承时,第二个参数最有用。 返回类型无需是资源的实际 CLR 实例。 它可以是实现查询的任何内容,例如 cookie。