[TIBCO.EMS .NET Admin client library 6.3 documentation]

Returns a summary of the contents of the ledger file of the server's default TIBCO Rendezvous certified messaging transport.

Namespace:  TIBCO.EMS.ADMIN
Assembly:  TIBCO.EMS.ADMIN (in TIBCO.EMS.ADMIN.dll)

Syntax

public CMLedgerSubjectInfo[] GetCMLedger(
	string pattern
)
Public Function GetCMLedger ( _
	pattern As String _
) As CMLedgerSubjectInfo()
public:
array<CMLedgerSubjectInfo^>^ GetCMLedger(
	String^ pattern
)

Parameters

pattern
Type: System..::.String
a pattern indicating which subjects are of interest.

Return Value

array of CMLedgerSubjectInfo objects that match the given pattern.

Remarks

If the server uses multiple named transports then use the GetCMLedger(String transport, String pattern) method to query the ledger for the given transport. Specifying a pattern limits the scope of the query to only those Rendezvous subjects matching the pattern. The pattern may contain the wildcards "*" and ">". See the TIBCO EMS documentation for how wildcards work. A pattern of "", ">", or null will return information on all the subjects in the ledger file.

Exceptions

ExceptionCondition
TIBCO.EMS.ADMIN..::.AdminExceptionif not authorized or an error occurred.

See Also