public static void ValidateItemPath(string itemPath, string source) { ItemPathValidator.CommonValidatePath(itemPath, source); if (!itemPath.StartsWith("/")) { throw new ArgumentException(source + " : should begin with '/'"); } }
public static void ValidateItemTemplate(string itemPath, string source) { ItemPathValidator.CommonValidatePath(itemPath, source); }