Override this method and place code that your App will execute in response to the completion of a SQL Call.

Namespace:  RedCritterV1
Assembly:  RedCritterV1 (in RedCritterV1.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

      
 C#  Visual Basic 
public virtual void OnSQLCallComplete(
	string requestID,
	XDocument results,
	Parameters parameters,
	int rowsAffected,
	Exception e
)
Public Overridable Sub OnSQLCallComplete ( _
	requestID As String, _
	results As XDocument, _
	parameters As Parameters, _
	rowsAffected As Integer, _
	e As Exception _
)

Parameters

requestID
String
The RequestID that you supplied in the call to AsymetricalEncrypt() will be passed.
results
XDocument
The XML result set.
parameters
Parameters
The command parameters along with new values if changed.
rowsAffected
Int32
The number of rows affected by the last UPDATE if applicable.
e
Exception
If not null contains the exception information.

See Also