Server.ConcatenateCaptureLog Method

Definition

Overloads

ConcatenateCaptureLog(Boolean, Boolean, Boolean)

Gets the capture log in a concatenated XML format, wrapped in an XMLA Batch element, indicates whether to include the transaction attribute and XMLA Parallel element, and indicates whether affected objects will be processed.

ConcatenateCaptureLog(Boolean, Boolean)

Gets the capture log in a concatenated XML format, wrapped in an XMLA Batch element, and indicates whether to include the transaction attribute and XMLA Parallel element.

ConcatenateCaptureLog(Boolean, Boolean, Boolean)

Gets the capture log in a concatenated XML format, wrapped in an XMLA Batch element, indicates whether to include the transaction attribute and XMLA Parallel element, and indicates whether affected objects will be processed.

public string ConcatenateCaptureLog (bool transactional, bool parallel, bool processAffected);
member this.ConcatenateCaptureLog : bool * bool * bool -> string
Public Function ConcatenateCaptureLog (transactional As Boolean, parallel As Boolean, processAffected As Boolean) As String

Parameters

transactional
Boolean

true to indicate that the transaction attribute on the Batch element will be set to true or false; otherwise, false.

parallel
Boolean

true to wrap all capture log entries in an XMLA Parallel element; otherwise, false.

processAffected
Boolean

true to indicate that the affected objects will be processed; otherwise, false. This parameter is reserved for future use.

Returns

A String containing the concatenated capture log.

Applies to

ConcatenateCaptureLog(Boolean, Boolean)

Gets the capture log in a concatenated XML format, wrapped in an XMLA Batch element, and indicates whether to include the transaction attribute and XMLA Parallel element.

public string ConcatenateCaptureLog (bool transactional, bool parallel);
member this.ConcatenateCaptureLog : bool * bool -> string
Public Function ConcatenateCaptureLog (transactional As Boolean, parallel As Boolean) As String

Parameters

transactional
Boolean

true to indicate that the transaction attribute on the Batch element will be set to true or false; otherwise, false.

parallel
Boolean

true to wrap all capture log entries in an XMLA Parallel element; otherwise, false.

Returns

A String containing the concatenated capture log.

Applies to