Occurs when an exception occurs during a NetSuite operation.

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

Syntax

C#
protected virtual void OnServiceInvocationError(
	string method,
	Object arg,
	Exception ex,
	ServiceInvocationEventArgs e
)
Visual Basic (Declaration)
Protected Overridable Sub OnServiceInvocationError ( _
	method As String, _
	arg As Object, _
	ex As Exception, _
	e As ServiceInvocationEventArgs _
)
Visual C++
protected:
virtual void OnServiceInvocationError(
	String^ method, 
	Object^ arg, 
	Exception^ ex, 
	ServiceInvocationEventArgs^ e
)

Parameters

method
Type: System..::.String
The SuiteTalk method that was invoked.
arg
Type: System..::.Object
Arguments provided to the method.
ex
Type: System..::.Exception
Exception that occured.
e
Type: com.celigo.net.ServiceManager.Utility..::.ServiceInvocationEventArgs
Retry cancellation arguments.

See Also