IDataServiceActionProvider Interface
This interface declares the methods required to support WCF data service actions.
Namespace: System.Data.Services.Providers
Assembly: Microsoft.Data.Services (in Microsoft.Data.Services.dll)
Syntax
'Declaration
Public Interface IDataServiceActionProvider
'Usage
Dim instance As IDataServiceActionProvider
public interface IDataServiceActionProvider
public interface class IDataServiceActionProvider
type IDataServiceActionProvider = interface end
public interface IDataServiceActionProvider
The IDataServiceActionProvider type exposes the following members.
Methods
Name | Description | |
---|---|---|
AdvertiseServiceAction | Determines if a service action is available for a specific resource. | |
CreateInvokable | Creates an instance of IDataServiceInvokable for the specified service action. | |
GetServiceActions | Return a collection of ServiceActions instances that represent the service actions implemented by the WCF Data Service. | |
GetServiceActionsByBindingParameterType | Gets a collection of service actions that match the specified binding parameter type. | |
TryResolveServiceAction | Attempts to retrieve the ServiceAction instance for the specified service action. |
Top