public static List <ResourceType> GetExpandedResourceTypes(this RequestDescription requestDescription) { return(requestDescription.GetAnnotation <List <ResourceType> >(ExpandedResourceTypesName)); }
public static bool GetPostServiceOperation(this RequestDescription requestDescription) { return(requestDescription.GetAnnotation <bool?>(PostServiceOperationName) == true); }
public static bool GetInvalidClientRequest(this RequestDescription requestDescription) { return(requestDescription.GetAnnotation <bool?>(InvalidClientRequestAnnotationName) == true); }
public static ResourceProperty GetPropertyForPropertyOnlyOperation(this RequestDescription requestDescription) { return(requestDescription.GetAnnotation <ResourceProperty>(PropertyForPropertyOnlyOperationName)); }
public static bool GetInherentOrderByKeys(this RequestDescription requestDescription) { return(requestDescription.GetAnnotation <bool?>(InherentOrderByKeysAnnotationName) == true); }
public static ResourceProperty GetSpecialExpandOnLinksProperty(this RequestDescription requestDescription) { return(requestDescription.GetAnnotation <ResourceProperty>(SpecialExpandOnLinksPropertyAnnotationName)); }
public static ResourceProperty GetExpandProperty(this RequestDescription requestDescription) { return(requestDescription.GetAnnotation <ResourceProperty>(ExpandPropertyAnnotationName)); }
public static ServiceVersions GetPOSTVersions(this RequestDescription requestDescription) { return(requestDescription.GetAnnotation <ServiceVersions>(POSTVersionsAnnotationName)); }
public static ServiceVersions GetPUTPATCHVersions(this RequestDescription requestDescription) { return(requestDescription.GetAnnotation <ServiceVersions>(PUTMERGEVersionsAnnotationName)); }