Exemple #1
0
 void AccountRelationDataAccountDataUpdated(RelationDataChangedInfo obj)
 {
     if (obj.AccountUserId == _userId)
     {
         this.RaiseReapplyFilter(obj);
     }
 }
 protected void RaiseReapplyFilter(RelationDataChangedInfo relInfo)
 {
     var handler = this.ReapplyRequested;
     if (handler != null) handler(relInfo);
 }
Exemple #3
0
 private void ExpressionReapplyRequested(RelationDataChangedInfo obj)
 {
     if (obj == null || obj.Change == RelationDataChange.Following)
     {
         this.RaiseReapplyFilter();
     }
 }
Exemple #4
0
 private void ExpressionReapplyRequested(RelationDataChangedInfo obj)
 {
     if (obj != null) return;
     System.Diagnostics.Debug.WriteLine("local user reapply");
     this.RaiseReapplyFilter();
 }
 private static void OnAccountDataUpdated(RelationDataChangedInfo obj)
 {
     var handler = AccountDataUpdated;
     if (handler != null) handler(obj);
 }