Microsoft.Protocols.TestSuites.MS_ASAIRS.S06_MeetingResponseCommand.SyncChanges C# (CSharp) Method

SyncChanges() private method

Sync changes between client and server
private SyncChanges ( string syncKey, string collectionId, Request bodyPreference ) : SyncStore
syncKey string The synchronization key returned by last request.
collectionId string Identify the folder as the collection being synchronized.
bodyPreference Microsoft.Protocols.TestSuites.Common.Request Sets preference information related to the type and size of information for body
return Microsoft.Protocols.TestSuites.Common.DataStructures.SyncStore
        private SyncStore SyncChanges(string syncKey, string collectionId, Request.BodyPreference bodyPreference)
        {
            // Get changes from server use initial syncKey
            SyncRequest syncRequest = TestSuiteHelper.CreateSyncRequest(syncKey, collectionId, bodyPreference);
            SyncStore syncResult = this.ASAIRSAdapter.Sync(syncRequest);

            return syncResult;
        }
        #endregion