ProjectController.GetAllProjects Method |
Gets all the projects in the system.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.2.0.1000)
Syntax[HttpGetAttribute]
[ProducesResponseTypeAttribute(440)]
public ActionResult<IList<ProjectData>> GetAllProjects(
GetEntryOptions options,
Guid? sessionId = null
)
<HttpGetAttribute>
<ProducesResponseTypeAttribute(440)>
Public Function GetAllProjects (
options As GetEntryOptions,
Optional sessionId As Guid? = Nothing
) As ActionResult(Of IList(Of ProjectData))
public:
[HttpGetAttribute]
[ProducesResponseTypeAttribute(440)]
ActionResult<IList<ProjectData^>^>^ GetAllProjects(
GetEntryOptions options,
Nullable<Guid> sessionId = nullptr
)
[<HttpGetAttribute>]
[<ProducesResponseTypeAttribute(440)>]
member GetAllProjects :
options : GetEntryOptions *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> ActionResult<IList<ProjectData>>
Parameters
- options
- Type: Dundas.BI.FileSystem.GetEntryOptions
The options used when getting the projects. - sessionId (Optional)
- Type: System.Nullable<Guid>
ID of the current session.
Return Value
Type:
ActionResult<IList<ProjectData>>The operation completed successfully. The payload contains an array of
ProjectData objects.
See Also