This topic has not yet been rated Rate this topic

DataService(Of T) Class

The main entry point for developing an ADO.NET Data Service.

System.Object
  System.Data.Services.DataService(Of T)

Namespace:  System.Data.Services
Assembly:  System.Data.Services (in System.Data.Services.dll)
[AspNetCompatibilityRequirementsAttribute(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
[ServiceBehaviorAttribute(InstanceContextMode = InstanceContextMode.PerCall)]
public class DataService<T> : IRequestHandler

Type Parameters

T

Type that defines the data service.

The DataService(Of T) type exposes the following members.

  Name Description
Public method DataService(Of T) Creates a new data service that deploys data of the type indicated by the template class.
Top
  Name Description
Protected property CurrentDataSource Gets the data source instance currently being used to process the request.
Public property ProcessingPipeline Gets an object that defines the events for the data service processing pipeline.
Top
  Name Description
Public method AttachHost Attaches the data service host to the data service identified by the parameter host.
Protected method CreateDataSource Creates a data source of the template class that will be used by the data service.
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method HandleException Called when an exception is raised while processing a request.
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Protected method OnStartProcessingRequest Called before processing each request. For batch requests, it is called one time for the top batch request and one time for each operation in the batch.
Public method ProcessRequest Processes an HTTP request.
Public method ProcessRequestForMessage Processes an HTTP request.
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Top

The DataService(Of T) class does the basic integration of all components of the server system. A new data service that uses system defaults for authorization and caching is created by defining a class that derives from the DataService(Of T) class and by referencing a compatible data model.

The type of the DataService(Of T) must expose at least one property that returns an entity set that is an IQueryable(Of T) collection of entity types. This class must also implement the IUpdatable interface to enable updates to be made to entity resources.

.NET Framework

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(2000 characters remaining)
Community Content Add
Annotations FAQ