|
ModelControllerTGetSearchableList(ModelControllerTPostData) Method
|
Gets all records from associated table, filtered and sorted as defined in postData.
Namespace: GSF.Web.ModelAssembly: GSF.Web (in GSF.Web.dll) Version: 2.4.158-beta
Syntax [RouteAttribute("SearchableList")]
[HttpPostAttribute]
public virtual IHttpActionResult GetSearchableList(
[FromBodyAttribute] ModelControllerTPostData postData
)
<RouteAttribute("SearchableList")>
<HttpPostAttribute>
Public Overridable Function GetSearchableList (
<FromBodyAttribute> postData As ModelControllerTPostData
) As IHttpActionResult
public:
[RouteAttribute(L"SearchableList")]
[HttpPostAttribute]
virtual IHttpActionResult^ GetSearchableList(
[FromBodyAttribute] ModelControllerTPostData^ postData
)
[<RouteAttribute("SearchableList")>]
[<HttpPostAttribute>]
abstract GetSearchableList :
[<FromBodyAttribute>] postData : ModelControllerTPostData -> IHttpActionResult
[<RouteAttribute("SearchableList")>]
[<HttpPostAttribute>]
override GetSearchableList :
[<FromBodyAttribute>] postData : ModelControllerTPostData -> IHttpActionResult
function GetSearchableList(postData);
View SourceParameters
- postData ModelControllerTPostData
- ModelControllerTPostData containing the search and sort parameters
Return Value
IHttpActionResultIHttpActionResult containing
IEnumerableT or
ExceptionSee Also