DataServiceContext(Uri) Constructor

Definition

Initializes a new instance of the DataServiceContext class with the specified serviceRoot.

public:
 DataServiceContext(Uri ^ serviceRoot);
public DataServiceContext (Uri serviceRoot);
new System.Data.Services.Client.DataServiceContext : Uri -> System.Data.Services.Client.DataServiceContext
Public Sub New (serviceRoot As Uri)

Parameters

serviceRoot
Uri

An absolute URI that identifies the root of a data service.

Exceptions

serviceRoot is null.

serviceRoot is not an absolute URI.

-or-

If the serviceRoot is a well formed URI without a query or query fragment.

Remarks

The client library expects the baseURI to point to the root of a data service, but it does not issue a request to validate it. If the baseURI does not identify the root of the service, the behavior of the client library is undefined.

A URI with a trailing slash is equivalent to one without the trailing character.

Applies to