コード例 #1
0
ファイル: SamlError.cs プロジェクト: kalash-/FubuMVC.Saml2
 protected bool Equals(SamlError other)
 {
     return(string.Equals(Key, other.Key) && string.Equals(Message, other.Message));
 }
コード例 #2
0
 public void LogError(SamlError error)
 {
     _errors.Add(error);
 }
コード例 #3
0
 public void LogError(SamlError error)
 {
     _errors.Add(error);
 }
コード例 #4
0
ファイル: SamlError.cs プロジェクト: sbartlett/FubuMVC.Saml2
 protected bool Equals(SamlError other)
 {
     return string.Equals(Key, other.Key) && string.Equals(Message, other.Message);
 }