EntityFrameworkDataServiceProvider.GetETagProperties Method
Given a resource container and resource type, gets the list of ResourceProperties that are part of the ETag.
Namespace: System.Data.Services.Providers
Assembly: Microsoft.Data.Services (in Microsoft.Data.Services.dll)
Syntax
'Declaration
Public Overridable Function GetETagProperties ( _
containerName As String, _
resourceType As ResourceType _
) As IList(Of ResourceProperty)
'Usage
Dim instance As EntityFrameworkDataServiceProvider
Dim containerName As String
Dim resourceType As ResourceType
Dim returnValue As IList(Of ResourceProperty)
returnValue = instance.GetETagProperties(containerName, _
resourceType)
public virtual IList<ResourceProperty> GetETagProperties(
string containerName,
ResourceType resourceType
)
public:
virtual IList<ResourceProperty^>^ GetETagProperties(
String^ containerName,
ResourceType^ resourceType
)
abstract GetETagProperties :
containerName:string *
resourceType:ResourceType -> IList<ResourceProperty>
override GetETagProperties :
containerName:string *
resourceType:ResourceType -> IList<ResourceProperty>
public function GetETagProperties(
containerName : String,
resourceType : ResourceType
) : IList<ResourceProperty>
Parameters
- containerName
Type: System.String
Resource set name.
- resourceType
Type: System.Data.Services.Providers.ResourceType
Resource type of entities in the resource container.
Return Value
Type: System.Collections.Generic.IList<ResourceProperty>
Collection of properties that are part of the ETag.
Implements
IDataServiceEntityFrameworkProvider.GetETagProperties(String, ResourceType)