Пример #1
0
		//update this request context based on the response context
		public void Update( ResponseContext rc )
		{
			if( rc.SessionId != null )
				this.sessionId = rc.SessionId;

			if( rc.Notifications != null && rc.Notifications.SequenceToken != null )
				this.NotificationSequence = rc.Notifications.SequenceToken;
		}
Пример #2
0
		public ResponseEnvelope( ResponseContext rc, Response r )
		{
			context = rc;
			apiResponse = r;
		}
Пример #3
0
		public void Update( ResponseContext rc, Zimbra.Client.Admin.AuthResponse ar )
		{
			this.AuthToken = ar.AuthToken;
			Update(rc);
		}
Пример #4
0
 public ResponseEnvelope(ResponseContext rc, Response r)
 {
     context     = rc;
     apiResponse = r;
 }