AuthenticationManager.Unregister Metod
Definition
Viktigt
En del information gäller för förhandsversionen av en produkt och kan komma att ändras avsevärt innan produkten blir allmänt tillgänglig. Microsoft lämnar inga garantier, uttryckliga eller underförstådda, avseende informationen som visas här.
Tar bort autentiseringsmoduler från listan över registrerade moduler.
Överlagringar
| Name | Description |
|---|---|
| Unregister(IAuthenticationModule) |
Tar bort den angivna autentiseringsmodulen från listan över registrerade moduler. |
| Unregister(String) |
Tar bort autentiseringsmoduler med det angivna autentiseringsschemat från listan över registrerade moduler. |
Unregister(IAuthenticationModule)
Tar bort den angivna autentiseringsmodulen från listan över registrerade moduler.
public:
static void Unregister(System::Net::IAuthenticationModule ^ authenticationModule);
public static void Unregister(System.Net.IAuthenticationModule authenticationModule);
static member Unregister : System.Net.IAuthenticationModule -> unit
Public Shared Sub Unregister (authenticationModule As IAuthenticationModule)
Parametrar
- authenticationModule
- IAuthenticationModule
Ta IAuthenticationModule bort från listan över registrerade moduler.
Undantag
authenticationModule är null.
Den angivna IAuthenticationModule är inte registrerad.
Exempel
I följande exempel används Unregister metoden för att ta bort den angivna autentiseringsmodulen från listan över registrerade moduler. Ett fullständigt exempel finns i AuthenticationManager klassen .
// This is the program entry point. It allows the user to enter
// her credentials and the Internet resource (Web page) to access.
// It also unregisters the standard and registers the customized basic
// authentication.
public static void Main(string[] args)
{
if (args.Length < 3)
{
ShowUsage();
}
else
{
// Read the user's credentials.
uri = args[0];
username = args[1];
password = args[2];
if (args.Length == 3)
domain = string.Empty;
else
// If the domain exists, store it. Usually the domain name
// is by default the name of the server hosting the Internet
// resource.
domain = args[3];
// Unregister the standard Basic authentication module.
AuthenticationManager.Unregister("Basic");
// Instantiate the custom Basic authentication module.
CustomBasic customBasicModule = new CustomBasic();
// Register the custom Basic authentication module.
AuthenticationManager.Register(customBasicModule);
// Display registered Authorization modules.
DisplayRegisteredModules();
// Read the specified page and display it on the console.
GetPage(uri);
}
return;
}
' This is the program entry point. It allows the user to enter
' her credentials and the Internet resource (Web page) to access.
' It also unregisters the standard and registers the customized basic
' authentication.
Private Overloads Shared Sub Main(ByVal args() As String)
If args.Length < 4 Then
showusage()
Else
' Read the user's credentials.
uri = args(1)
username = args(2)
password = args(3)
If args.Length = 4 Then
domain = String.Empty
' If the domain exists, store it. Usually the domain name
' is by default the name of the server hosting the Internet
' resource.
Else
domain = args(5)
End If
' Unregister the standard Basic authentication module.
AuthenticationManager.Unregister("Basic")
' Instantiate the custom Basic authentication module.
Dim customBasicModule As New CustomBasic()
' Register the custom Basic authentication module.
AuthenticationManager.Register(customBasicModule)
' Display registered Authorization modules.
displayRegisteredModules()
' Read the specified page and display it on the console.
getPage(uri)
End If
Return
End Sub
End Class
Kommentarer
Metoden Unregister tar bort den angivna autentiseringsmodulen från listan över autentiseringsmoduler som anropas av Authenticate metoden. Modulen måste ha lagts till i listan med hjälp av Register metoden innan den kan tas bort från listan.
Gäller för
Unregister(String)
Tar bort autentiseringsmoduler med det angivna autentiseringsschemat från listan över registrerade moduler.
public:
static void Unregister(System::String ^ authenticationScheme);
public static void Unregister(string authenticationScheme);
static member Unregister : string -> unit
Public Shared Sub Unregister (authenticationScheme As String)
Parametrar
- authenticationScheme
- String
Autentiseringsschemat för modulen som du vill ta bort.
Undantag
authenticationScheme är null.
En modul för det här autentiseringsschemat är inte registrerad.
Exempel
I följande exempel används Unregister metoden för att ta bort en autentiseringsmodul med det angivna autentiseringsschemat från listan över registrerade moduler.
IEnumerator registeredModules = AuthenticationManager.RegisteredModules;
// Display all the modules that are already registered with the system.
DisplayAllModules();
registeredModules.Reset();
registeredModules.MoveNext();
// Get the first Authentication module registered with the system.
IAuthenticationModule authenticationModule1 = (IAuthenticationModule)registeredModules.Current;
// Call the UnRegister() method to unregister the first authentication module from the system.
String authenticationScheme = authenticationModule1.AuthenticationType;
AuthenticationManager.Unregister(authenticationScheme);
Console.WriteLine("\nSuccessfully unregistered '{0}",authenticationModule1+"'.");
// Display all modules to see that the module was unregistered.
DisplayAllModules();
Dim registeredModules As IEnumerator = AuthenticationManager.RegisteredModules
DisplayAllModules()
registeredModules.Reset()
registeredModules.MoveNext()
'Get the first Authentication module registered with the system
Dim authenticationModule1 As IAuthenticationModule = CType(registeredModules.Current, IAuthenticationModule)
'Call the UnRegister method to unregister the first authentication module from the system.
Dim authenticationScheme As [String] = authenticationModule1.AuthenticationType
AuthenticationManager.Unregister(authenticationScheme)
Console.WriteLine(ControlChars.Cr + "Successfully unregistered {0}", authenticationModule1)
'Display all modules to see that the module was unregistered.
DisplayAllModules()
'Call the Register method to register authenticationModule1 module again.
AuthenticationManager.Register(authenticationModule1)
Console.WriteLine(ControlChars.Cr + "Successfully re-registered {0}", authenticationModule1)
'Display the modules to verify that 'authenticationModule1' has been registered again.
DisplayAllModules()
Kommentarer
Metoden Unregister tar bort autentiseringsmodulen med det angivna autentiseringsschemat från listan över autentiseringsmoduler som anropas av Authenticate metoden. Modulen måste ha lagts till i listan med hjälp av Register metoden innan den kan tas bort från listan.