Sage.SData.Client.Core.BatchProcess.GetBatchKey C# (CSharp) 메소드

GetBatchKey() 개인적인 정적인 메소드

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