Click or drag to resize

LogLogMethodReply Method

Log a method reply. Call this method when service is finished processing a method and is about to return the ConneXionResult object back to the client. The general format of each line is: [YYYY-MM-DD] [HH:MM:SS] [Client IP] [Unique Message ID] [Reply] [Method Name] [Success=True|False] [Description=] [Source=] [TAMErrorNumber=] [TAMSource=] [TAMDescription=] where Success, Description, Source, TAMErrorNumber, TAMSource, and TAMDescription are values from the ConneXionResult object to be returned to the client. For example: 2005-11-07 00:04:04 206.196.21.144 632668907937265777 Reply FindPoliciesByCriteria Success=True Number=0 Description="Found 1 Policies" Source= TAMErrorNumber= TAMSource= TAMDescription=""

Namespace:  ConneXion
Assembly:  ConneXion (in ConneXion.dll) Version: 2020.0
Syntax
public void LogMethodReply(
	string sClientIP,
	string sMessageID,
	ConneXionResult oConneXionResult
)

Parameters

sClientIP
Type: SystemString
The IP address of the client calling the method.
sMessageID
Type: SystemString
The unique message ID returned by LogMethodRequest().
oConneXionResult
Type: ConneXionConneXionResult
The ConneXion result status to be returned to the client.
Remarks
Examples