void IMailbox.AddMoveHistoryEntry(MoveHistoryEntryInternal mhei, int maxMoveHistoryLength)
 {
     base.CreateContext("IMailbox.AddMoveHistoryEntry", new DataContext[0]).Execute(delegate
     {
         this.WrappedObject.AddMoveHistoryEntry(mhei, maxMoveHistoryLength);
     }, true);
 }
        void IMailbox.AddMoveHistoryEntry(MoveHistoryEntryInternal mhei, int maxMoveHistoryLength)
        {
            MrsTracer.ProxyClient.Function("RemoteMailbox.AddMoveHistoryEntry", new object[0]);
            this.VerifyMailboxConnection();
            string mheData = mhei.Serialize(false);

            base.MrsProxy.IMailbox_AddMoveHistoryEntry(base.Handle, mheData, maxMoveHistoryLength);
        }
Beispiel #3
0
 void IMailbox.AddMoveHistoryEntry(MoveHistoryEntryInternal mhei, int maxMoveHistoryLength)
 {
     MrsTracer.Provider.Function("StorageMailbox.AddMoveHistoryEntry", new object[0]);
     base.VerifyMailboxConnection(VerifyMailboxConnectionFlags.None);
     using (base.RHTracker.Start())
     {
         mhei.SaveToMailbox(this.StoreSession.Mailbox.MapiStore, maxMoveHistoryLength);
     }
 }
Beispiel #4
0
 void IMailbox.AddMoveHistoryEntry(MoveHistoryEntryInternal mhei, int maxMoveHistoryLength)
 {
     throw new NotImplementedException();
 }