EIdentityLoginProvidersLoading Event Content Studio 5.7 SDK
Content Studio Web Content Management System

[This is preliminary documentation and is subject to change.]

Occurs when the control loads the providers from Authify Federation Authentication Server.

Namespace: ContentStudio.Site.Security.EIdentity
Assembly: ContentStudio.Site.Security.EIdentity (in ContentStudio.Site.Security.EIdentity.dll) Version: 5.6.5014.0 (5.6.5014.0)
Syntax

public event EventHandler<ProvidersLoadingEventArgs> ProvidersLoading

Value

Type: SystemEventHandlerProvidersLoadingEventArgs
Remarks

The ProvidersLoading event can be used to remove unwanted providers from being loaded into the control.
Examples

The following example shows how to remove an unwanted provider making this provider unavaliable in the user interface.

C#
protected void OnProvidersLoading(object sender, ProvidersLoadingEventArgs e)
{
   e.ProviderNames.Remove("telia");
}
See Also

Reference