Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
 ServiceUri Property
Collapse All/Expand All Collapse All
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
ClientRoleProvider..::.ServiceUri Property

Gets or sets the URI of the role service.

Namespace:  System.Web.ClientServices.Providers
Assembly:  System.Web.Extensions (in System.Web.Extensions.dll)
Visual Basic (Declaration)
Public Property ServiceUri As String
Visual Basic (Usage)
Dim instance As ClientRoleProvider
Dim value As String

value = instance.ServiceUri

instance.ServiceUri = value
C#
public string ServiceUri { get; set; }
Visual C++
public:
property String^ ServiceUri {
    String^ get ();
    void set (String^ value);
}
JScript
public function get ServiceUri () : String
public function set ServiceUri (value : String)

Property Value

Type: System..::.String
The role service URI.
ExceptionCondition
ArgumentException

When getting this property, no service URI was found in the application configuration file, and this property has not been previously set.

You can set the ServiceUri property in your application code, but you will typically set the value in your application configuration file. This enables you to change the service location without recompiling your code. For more information, see How to: Configure Client Application Services.

When you set the service location programmatically, you must specify the complete service URI, which will always end with "Role_JSON_AppService.axd".

The following example code demonstrates how to use this property to programmatically set the roles service location.

Visual Basic
Private Sub SetRolesServiceLocation()
    CType(System.Web.Security.Roles.Provider,  _
        ClientRoleProvider).ServiceUri = _
        "http://localhost:55555/AppServices/Role_JSON_AppService.axd"
End Sub
C#
private void SetRolesServiceLocation()
{
    ((ClientRoleProvider)System.Web.Security.Roles.Provider).ServiceUri = 
        "http://localhost:55555/AppServices/Role_JSON_AppService.axd";
}

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker