Sage.SData.Client.Core.BatchProcess.GetBatchKey C# (CSharp) Method

GetBatchKey() private static method

private static GetBatchKey ( string url ) : string
url string
return string
        private static string GetBatchKey(string url, params string[] extraSegments)
        {
            return new SDataUri(url)
                   {
                       CollectionPredicate = null,
                       Query = null
                   }.AppendPath(extraSegments).ToString();
        }