internal static string RemoveServicePathPrefix(string path)
        {
            string str;

            ServiceBusUriHelper.TryRemoveServicePathPrefix(path, out str, true);
            return(str);
        }
 internal static bool TryRemoveServicePathPrefix(string path, out string refinedPath)
 {
     return(ServiceBusUriHelper.TryRemoveServicePathPrefix(path, out refinedPath, false));
 }