Skip to content

ERPConnect.RFCCallbackFunction

Namespace: ERPConnect
Assembly: ERPConnectStandard20.dll

public sealed class RFCCallbackFunction

Inheritance

objectRFCCallbackFunction

Inherited Members

object.GetType(), object.ToString(), object.Equals(object?), object.Equals(object?, object?), object.ReferenceEquals(object?, object?), object.GetHashCode()

Constructors

RFCCallbackFunction(string, Action<RFCCallbackFunction>)

Initializes a new ERPConnect.RFCCallbackFunction object

public RFCCallbackFunction(string name, Action<RFCCallbackFunction> callback)

Parameters

name string

The name of this function used to dispatch incoming callbacks

callback Action<RFCCallbackFunction>

The handling method which is called when a callback for this function is received

Properties

Callback

Gets the delegate that is used to handle incoming callbacks

public Action<RFCCallbackFunction> Callback { get; }

Property Value

Action<RFCCallbackFunction>

Exports

Gets a RFCParamter collection which represents the export parameters to be exchanged with the SAP system

public RFCParameterCollection Exports { get; }

Property Value

RFCParameterCollection

Imports

Gets a RFCParamter collction which represents the import parameters to be exchanged with the SAP system

public RFCParameterCollection Imports { get; }

Property Value

RFCParameterCollection

Name

Gets the name of this callback function

public string Name { get; }

Property Value

string

Tables

Gets a RFCTable collection which represents the tables to be exchanged with the SAP system

public RFCTableCollection Tables { get; }

Property Value

RFCTableCollection