ReviewR.Web.Services.Authenticators.FacebookAuthenticator.GetAppId C# (CSharp) Method

GetAppId() public method

public GetAppId ( ISettings appSettings ) : string
appSettings ISettings
return string
        public override string GetAppId(ISettings appSettings)
        {
            Requires.NotNull(appSettings, "appSettings");

            return appSettings.Get(AppIdKey);
        }
FacebookAuthenticator