FileSystemEntryControllerBaseEntryExists Method (String, 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 (8.0.2.1001)
Syntaxprotected HttpResponseMessage EntryExists(
string name,
Guid parentFolderId,
Nullable<Guid> sessionId = null
)
Protected Function EntryExists (
name As String,
parentFolderId As Guid,
Optional sessionId As Nullable(Of Guid) = Nothing
) As HttpResponseMessage
protected:
HttpResponseMessage^ EntryExists(
String^ name,
Guid parentFolderId,
Nullable<Guid> sessionId = nullptr
)
member EntryExists :
name : string *
parentFolderId : Guid *
?sessionId : Nullable<Guid>
(* Defaults:
let _sessionId = defaultArg sessionId null
*)
-> HttpResponseMessage
Parameters
- name
- Type: SystemString
The name of the entry to check for existence. - parentFolderId
- Type: SystemGuid
The ID of the parent folder. - sessionId (Optional)
- Type: SystemNullableGuid
ID of the current session.
Return Value
Type:
HttpResponseMessage if an entry with the specified name exists in the specified folder;
otherwise
. Or an error code in case of operation failure.
See Also