Example #1
0
 internal void Validate()
 {
     if (IssuerUri.IsMissing())
     {
         throw new ArgumentException("IssuerUri Is Missing");
     }
 }
Example #2
0
        internal void Validate()
        {
            if (IssuerUri.IsMissing())
            {
                throw new ArgumentException("IssuerUri Is Missing");
            }

            if (CookieOptions == null)
            {
                throw new ArgumentException("CookieOptions is missing");
            }
        }
Example #3
0
 internal void Validate()
 {
     if (IssuerUri.IsMissing())
     {
         throw new ArgumentException("IssuerUri Is Missing");
     }
     if (AuthenticationOptions == null)
     {
         throw new ArgumentException("AuthenticationOptions is missing");
     }
     if (CspOptions == null)
     {
         throw new ArgumentException("CspOptions is missing");
     }
     if (Endpoints == null)
     {
         throw new ArgumentException("Endpoints is missing");
     }
 }