Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

FederatedAuthentication::FederationConfigurationCreated Event

.NET Framework (current version)
 

Occurs when the FederationConfiguration property is accessed for the first time by one of the HTTP modules in the web application.

Namespace:   System.IdentityModel.Services
Assembly:  System.IdentityModel.Services (in System.IdentityModel.Services.dll)

public:
event EventHandler<FederationConfigurationCreatedEventArgs^>^ FederationConfigurationCreated {
	static void add(EventHandler<FederationConfigurationCreatedEventArgs^>^ value);
	static void remove(EventHandler<FederationConfigurationCreatedEventArgs^>^ value);
}

The FederationConfigurationCreated event is raised when the first HTTP module in the web application references FederationConfiguration property. The first access of the this property causes a FederationConfiguration object to be created and initialized from the <federationConfiguration> element in the configuration file. You can access the newly created FederationConfiguration object through the FederationConfigurationCreatedEventArgs::FederationConfiguration property in an event handler in order to examine or modify it before it is used to provide initialization for any of the HTTP modules configured for the application.

.NET Framework
Available since 4.5
Return to top
Show:
© 2017 Microsoft