ClientFormsAuthenticationMembershipProvider.ServiceUri Propriedade

Definição

Obtém ou define o URI do serviço de autenticação.Gets or sets the URI of the authentication service.

public:
 property System::String ^ ServiceUri { System::String ^ get(); void set(System::String ^ value); };
public string ServiceUri { get; set; }
member this.ServiceUri : string with get, set
Public Property ServiceUri As String

Valor da propriedade

String

O URI do serviço de autenticação.The authentication service URI.

Exceções

Ao obter essa propriedade, nenhum URI de serviço foi encontrado no arquivo de configuração de aplicativo e essa propriedade não foi definida anteriormente.When getting this property, no service URI was found in the application configuration file, and this property has not been previously set.

Exemplos

O código de exemplo a seguir demonstra como usar essa propriedade para definir programaticamente o local do serviço de autenticação.The following example code demonstrates how to use this property to programmatically set the authentication service location. Ao definir o local do serviço programaticamente, você deve especificar o URI de serviço completo, que sempre terminará com "Authentication_JSON_AppService. axd".When you set the service location programmatically, you must specify the complete service URI, which will always end with "Authentication_JSON_AppService.axd".

private void SetAuthenticationServiceLocation()
{
    ((ClientFormsAuthenticationMembershipProvider)
        System.Web.Security.Membership.Provider).ServiceUri =
        "http://localhost:55555/AppServices/Authentication_JSON_AppService.axd";
}
Private Sub SetAuthenticationServiceLocation()
    CType(System.Web.Security.Membership.Provider,  _
        ClientFormsAuthenticationMembershipProvider).ServiceUri = _
        "http://localhost:55555/AppServices/Authentication_JSON_AppService.axd"
End Sub

Comentários

Você pode definir a ServiceUri propriedade no código do aplicativo, mas normalmente definirá o valor em seu arquivo de configuração de aplicativo.You can set the ServiceUri property in your application code, but you will typically set the value in your application configuration file. Isso permite que você altere o local do serviço sem recompilar seu código.This enables you to change the service location without recompiling your code.

Aplica-se a