Microsoft.Protocols.TestSuites.MS_OUTSPS.MS_OUTSPSAdapter.GetListItemChangesSinceToken C# (CSharp) Method

GetListItemChangesSinceToken() public method

The GetListItemChangesSinceToken operation is used to return changes made to a specified list after the event expressed by the change token, if specified, or to return all the list items in the list.
public GetListItemChangesSinceToken ( string listName, string viewName, GetListItemChangesSinceTokenQuery query, CamlViewFields viewFields, string rowLimit, CamlQueryOptions queryOptions, string changeToken, CamlContains contains ) : GetListItemChangesSinceTokenResponseGetListItemChangesSinceTokenResult
listName string The name of the list from which version collection will be got
viewName string The GUID refers to a view of the list
query GetListItemChangesSinceTokenQuery The query to determine which records from the list are to be /// returned and the order in which they will be returned
viewFields Microsoft.Protocols.TestSuites.Common.CamlViewFields Specifies which fields of the list item will be returned
rowLimit string Indicate the maximum number of rows of data to return
queryOptions Microsoft.Protocols.TestSuites.Common.CamlQueryOptions Specifies various options for modifying the query
changeToken string Assigned a string comprising a token returned by a previous /// call to this operation.
contains Microsoft.Protocols.TestSuites.Common.CamlContains Specifies a value to search for
return GetListItemChangesSinceTokenResponseGetListItemChangesSinceTokenResult
        public GetListItemChangesSinceTokenResponseGetListItemChangesSinceTokenResult GetListItemChangesSinceToken(string listName, string viewName, GetListItemChangesSinceTokenQuery query, CamlViewFields viewFields, string rowLimit, CamlQueryOptions queryOptions, string changeToken, CamlContains contains)
        {
            if (null == this.listsProxy)
            {
                throw new InvalidOperationException("The Proxy instance is NULL, need to initialize the adapter");
            }

            GetListItemChangesSinceTokenResponseGetListItemChangesSinceTokenResult result = null;
            result = this.listsProxy.GetListItemChangesSinceToken(listName, viewName, query, viewFields, rowLimit, queryOptions, changeToken, contains);
            this.VerifyTransportRequirement();
            this.VerifyGetListItemChangesSinceTokenResponse(result);

            return result;
        }