FileSystemEntryControllerBaseEntryExists Method (Guid, NullableGuid) |
Determines whether an entry with the specified name exists in the specified folder.
Namespace:
Dundas.BI.WebApi.Controllers
Assembly:
Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (10.0.0.1002)
Syntaxprotected IActionResult EntryExists(
Guid id,
Guid? sessionId = null
)
Protected Function EntryExists (
id As Guid,
Optional sessionId As Guid? = Nothing
) As IActionResult
protected:
IActionResult^ EntryExists(
Guid id,
Nullable<Guid> sessionId = nullptr
)
member EntryExists :
id : Guid *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> IActionResult
Parameters
- id
- Type: SystemGuid
The ID of the entry to check for existence. - sessionId (Optional)
- Type: SystemNullableGuid
ID of the current session.
Return Value
Type:
IActionResult if an entry with the specified ID exists;
otherwise
. Or an error code in case of operation failure.
See Also