Occurs before a remote NetSuite Method is invoked. Deriving classes may override this method to perform additional processing before 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 OnBeforeServiceInvocation(
	string method,
	Object arg
)
Visual Basic (Declaration)
Protected Overridable Sub OnBeforeServiceInvocation ( _
	method As String, _
	arg As Object _
)
Visual C++
protected:
virtual void OnBeforeServiceInvocation(
	String^ method, 
	Object^ arg
)

Parameters

method
Type: System..::.String
The name of the SuiteTalk method about to be invoked.
arg
Type: System..::.Object
Arguments to be provided as parameters.

See Also