OAuthBase ProviderName Property Nemiro.OAuth
Unique provider name.

Namespace: Nemiro.OAuth
Assembly: Nemiro.OAuth (in Nemiro.OAuth.dll) Version: 1.9.4.725 (1.9.4.725)
Syntax

public abstract string ProviderName { get; }

Property Value

Type: String
Remarks

Client classes are required to implement this property.

The provider name must be unique.

Examples

public override string ProviderName
{
  get
  {
    return "KGB";
  }
}
See Also