Class PortPrimaryCollection
- Namespace
- SWConfigDataClientLib.Proxies.PortManager
- Assembly
- IpPbxCDSClientLib.dll
Collection of primary configuration items. The primary configuration item is PortEntry. This class is generated.
[DefaultMember("Item")]
public class PortPrimaryCollection : SArrayListFacade
- Inheritance
-
PortPrimaryCollection
- Inherited Members
Constructors
PortPrimaryCollection()
standard constructor
public PortPrimaryCollection()
PortPrimaryCollection(bool)
public PortPrimaryCollection(bool sync)
Parameters
sync
bool
Fields
ClassTrace
protected static STraceInfo ClassTrace
Field Value
- STraceInfo
Properties
this[int]
Get the item per index
public virtual PortEntry this[int Index] { get; set; }
Parameters
Index
int
Property Value
- PortEntry
PortEntry
ProxyNumber
protected virtual long ProxyNumber { get; }
Property Value
Valid
True if is valid data object
public virtual bool Valid { get; }
Property Value
Methods
Add(PortEntry)
Adds the item to the collection.
public virtual void Add(PortEntry entry)
Parameters
entry
PortEntryEntry to be added.
Remarks
The item will not be stored in database directly. To effect the database use the method update() of PortFacade.
Add(PortPrimaryCollection)
Adds the item to the collection.
public virtual void Add(PortPrimaryCollection Collection)
Parameters
Collection
PortPrimaryCollection
Remarks
The item will not be stored in database. To effect the database use members of .
ContainsEntryInLocalCollectionByName(string)
Checks is the item with Name = key in collection.
public virtual bool ContainsEntryInLocalCollectionByName(string key)
Parameters
key
stringName
Returns
- bool
Returns true if collection contains item with the given key.
ContainsObjectByPrimaryKey(int)
Checks if the item, identified by the primary key, is in this collection.
Element of primary key.public virtual bool ContainsObjectByPrimaryKey(int PortID)
Parameters
PortID
int
Returns
- bool
True if entry is in collection, otherwise false.
CreateSortableFilterCollection()
Creates a sortable collection containing all current entries of this collection.
public virtual PortEntrySortableCollection CreateSortableFilterCollection()
Returns
- PortEntrySortableCollection
Sortable collection with optional filter methods.
GetEntryFromLocalCollectionByName(string)
Retrieves the item with Name = key from this collection.
public virtual PortEntry GetEntryFromLocalCollectionByName(string key)
Parameters
key
stringName
Returns
- PortEntry
Entry from collection
Exceptions
- Exception
Will be thrown if item is not in collection.
GetObjectByPrimaryKey(int)
Gets the item identified by the primary key from this collection.
Primary key of item.public virtual PortEntry GetObjectByPrimaryKey(int PortID)
Parameters
PortID
int
Returns
- PortEntry
Entry
Remove(PortEntry)
Removes the item from the collection.
public virtual void Remove(PortEntry entry)
Parameters
entry
PortEntryEntry to be removed.
Remarks
The item will not be deleted in database directly. To effect the database use update(true) of .
RemoveLocally(PortEntry)
Removes the entry from the local collection.
public void RemoveLocally(PortEntry entry)
Parameters
entry
PortEntryEntry to be deleted.