コード例 #1
0
 public bool Valid()
 {
     return(!Id.NullOrEmpty() &&
            !Name.NullOrEmpty() &&
            !ClientSecrets.IsNullOrEmpty() &&
            !AllowedScopes.IsNullOrEmpty() &&
            !RedirectUris.IsNullOrEmpty() &&
            !PostLogoutRedirectUris.IsNullOrEmpty() &&
            !AllowedCorsOrigins.IsNullOrEmpty());
 }