Open this page in the API Guide

IFileSystemService.CheckIn Method (ICollection<Guid>, String)

Checks in entities with the specified IDs.

Namespace:  Dundas.BI.FileSystem
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntax
CheckInResult CheckIn(
	ICollection<Guid> ids,
	string? comment
)

Parameters

ids
Type: System.Collections.Generic.ICollection<Guid>
The IDs of one or more folders and/or entities to check in.
comment
Type: System.String
A comment describing the check-in (or null if there is no comment).

Return Value

Type: CheckInResult
An object describing the result of the operation.
Exceptions
ExceptionCondition
ArgumentNullExceptionids is null.
ArgumentOutOfRangeExceptioncomment was longer than CheckInCommentMaxLength.
InvalidSessionExceptionThe caller context is not associated with a valid session.
Remarks
Attempting to check in an entry which is already checked in is valid, and will not result in any error.
See Also