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 인스턴스일 필요는 없습니다. 반환 형식은 구현에 필요한 어느 것이든 될 수 있습니다(예: 쿠키).