Occurs after a remote NetSuite Method is invoked. Deriving classes may override this method to perform additional processing after each Web Service invocation.

Namespace:  com.celigo.net.ServiceManager
Assembly:  ServiceManager (in ServiceManager.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

C#
protected virtual void OnAfterServiceInvocation(
	string method,
	Object arg,
	Object result
)
Visual Basic (Declaration)
Protected Overridable Sub OnAfterServiceInvocation ( _
	method As String, _
	arg As Object, _
	result As Object _
)
Visual C++
protected:
virtual void OnAfterServiceInvocation(
	String^ method, 
	Object^ arg, 
	Object^ result
)

Parameters

method
Type: System..::.String
The name of the SuiteTalk method that was invoked.
arg
Type: System..::.Object
Arguments provided as parameters.
result
Type: System..::.Object
The result returned from the WebService.

See Also