TransactionalNodeService.TransactionalMappingToolService.SearchMap C# (CSharp) Method

SearchMap() public method

TODO: This method needs to be moved from here as it makes calls to schema specific methods.
public SearchMap ( string callingUrl, System.Guid domainId, System.Guid rootMapUid, SearchConditions conditions, int pageNumber = 1, int pageSize = 5 ) : SearchMapResult
callingUrl string
domainId System.Guid
rootMapUid System.Guid
conditions SearchConditions
pageNumber int
pageSize int
return SearchMapResult
        public SearchMapResult SearchMap(string callingUrl, Guid domainId, Guid rootMapUid, SearchConditions conditions, int pageNumber = 1, int pageSize = 5)
        {
            using (GlymaNSApp.NodeServiceClient nodeServiceClient = new GlymaNSApp.NodeServiceClient(callingUrl))
            {
                return nodeServiceClient.SearchMap(callingUrl, domainId, rootMapUid, conditions, pageNumber, pageSize);
            }
        }