Share via


ConfigOptions.LoginProviders Property

 

Sets the ILoginProvider implementations that are participating in the Azure Mobile Service authentication process. The set includes the list of ILoginProvider implementations that are registered by default. The default set can be replaced or augmented by additional ILoginProvider implementations. In order for an entry to be registered as a login provider, it must be a public, visible, non-abstract implementation of ILoginProvider.

Namespace:   Microsoft.WindowsAzure.Mobile.Service
Assembly:  Microsoft.WindowsAzure.Mobile.Service (in Microsoft.WindowsAzure.Mobile.Service.dll)

Syntax

public Collection<Type> LoginProviders { get; }
public:
property Collection<Type^>^ LoginProviders {
    Collection<Type^>^ get();
}
member LoginProviders : Collection<Type> with get
Public ReadOnly Property LoginProviders As Collection(Of Type)

Property Value

Type: System.Collections.ObjectModel.Collection<Type>

See Also

ConfigOptions Class
Microsoft.WindowsAzure.Mobile.Service Namespace

Return to top