Microsoft.Protocols.TestSuites.MS_ASAIRS.TestSuiteBase.FolderSync C# (CSharp) Method

FolderSync() private method

This method is used to synchronize the folder collection hierarchy.
private FolderSync ( ) : FolderSyncResponse
return FolderSyncResponse
        private FolderSyncResponse FolderSync()
        {
            FolderSyncResponse folderSyncResponse = this.ASAIRSAdapter.FolderSync(Common.CreateFolderSyncRequest("0"));

            this.Site.Assert.AreEqual<string>(
                "1",
                folderSyncResponse.ResponseData.Status,
                "The Status value should be 1 to indicate the FolderSync command executes successfully.");

            return folderSyncResponse;
        }