monotooth : monotooth.Model.Service Namespace

ServicePool Class

A simple collection that holds services.

[System.Reflection.DefaultMember("Item")]
public class ServicePool : CollectionBase


Remarks

The current implementation holds only linux specific services.

Members

See Also: Inherited members from CollectionBase.

Constructors

The default constructor.

Properties

Item [int]
default property
Service . The index-operator for this pool

Methods

Add (Service)
Add a service to this pool.
Remove (Service)
Removes a service from the pool.

Member Details

ServicePool Constructor

public ServicePool ()

The default constructor.

Remarks

To be added.

Add Method

public virtual void Add (Service ser)

Add a service to this pool.

Parameters

ser
A service to be added to the pool.

Remarks

To be added.

Item Property

public virtual Service this [int index] { set; get; }

This is the default property for this class.

The index-operator for this pool

Parameters

index
The index.

Value

A service

Remarks

To be added.

Remove Method

public virtual void Remove (Service ser)

Removes a service from the pool.

Parameters

ser
A service to be removed from the pool.

Remarks

To be added.