Gets or sets the URI of the role service.
Public Property ServiceUri As String
Dim instance As ClientRoleProvider Dim value As String value = instance.ServiceUri instance.ServiceUri = value
public string ServiceUri { get; set; }
public: property String^ ServiceUri { String^ get (); void set (String^ value); }
public function get ServiceUri () : String public function set ServiceUri (value : String)
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.
Private Sub SetRolesServiceLocation() CType(System.Web.Security.Roles.Provider, _ ClientRoleProvider).ServiceUri = _ "http://localhost:55555/AppServices/Role_JSON_AppService.axd" End Sub
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