Skip to content

ERPConnect.RFCServerFunctionCollection

Namespace: ERPConnect
Assembly: ERPConnectStandard20.dll

A set of RFCServerFunction objects

public sealed class RFCServerFunctionCollection : IList<RFCServerFunction>, ICollection<RFCServerFunction>, IEnumerable<RFCServerFunction>, IEnumerable

Inheritance

objectRFCServerFunctionCollection

Implements

IList<RFCServerFunction>, ICollection<RFCServerFunction>, IEnumerable<RFCServerFunction>, IEnumerable

Inherited Members

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

Constructors

RFCServerFunctionCollection()

public RFCServerFunctionCollection()

Properties

Count

public int Count { get; }

Property Value

int

this[int]

public RFCServerFunction this[int index] { get; set; }

Property Value

RFCServerFunction

this[string]

public RFCServerFunction this[string name] { get; set; }

Property Value

RFCServerFunction

Methods

Add(RFCServerFunction)

Adds a new Item to the Collection

public void Add(RFCServerFunction rfcServerFunction)

Parameters

rfcServerFunction RFCServerFunction

RFCServerFunction to be added

Add(string)

Adds a new function object to the collection

public RFCServerFunction Add(string functionName)

Parameters

functionName string

Name of the function module to be added

Returns

RFCServerFunction

A newly created RFCServerFunction object

Clear()

public void Clear()

Contains(RFCServerFunction)

public bool Contains(RFCServerFunction item)

Parameters

item RFCServerFunction

Returns

bool

Contains(string)

public bool Contains(string name)

Parameters

name string

Returns

bool

CopyTo(RFCServerFunction[], int)

public void CopyTo(RFCServerFunction[] array, int arrayIndex)

Parameters

array RFCServerFunction[]

arrayIndex int

GetEnumerator()

public IEnumerator<RFCServerFunction> GetEnumerator()

Returns

IEnumerator<RFCServerFunction>

IndexOf(RFCServerFunction)

public int IndexOf(RFCServerFunction item)

Parameters

item RFCServerFunction

Returns

int

Insert(int, RFCServerFunction)

public void Insert(int index, RFCServerFunction item)

Parameters

index int

item RFCServerFunction

Remove(RFCServerFunction)

public bool Remove(RFCServerFunction item)

Parameters

item RFCServerFunction

Returns

bool

RemoveAt(int)

public void RemoveAt(int index)

Parameters

index int

RemoveAt(string)

public void RemoveAt(string name)

Parameters

name string