コード例 #1
0
ファイル: StateController.cs プロジェクト: oronm/homecontrol
 private bool validateIdentity(FeederIdentity identity)
 {
     return identity != null &&
         !string.IsNullOrWhiteSpace(identity.Group) &&
         !string.IsNullOrWhiteSpace(identity.Location) &&
         !string.IsNullOrWhiteSpace(identity.Realm);
 }
コード例 #2
0
 public static void SetFeederIdentity(FeederIdentity identity)
 {
     HttpContext.Current.Items.Add("FeederIdentity", identity);
 }