IGISServers Interface
Provides access to members that manage the collection of IGISServer objects.
Members
Name | Description | |
---|---|---|
![]() |
Add | Adds an IGISServer object to the end of the collection. |
![]() |
Count | Gets the number of IGISServer objects in the collection. |
![]() |
Element | Returns the IGISServer at the specified index. |
![]() |
Insert | Inserts an IGISServer into the collection at the specified index. |
![]() |
Remove | Removes the IGISServer at the specified index. |
![]() |
RemoveAll | Removes all of the IGISServer objects in the collection. |
IGISServers.Add Method
Adds an IGISServer object to the end of the collection.
Public Sub Add ( _
ByVal Server As IGISServer _
)
public void Add (
IGISServer Server
);
IGISServers.Count Property
Gets the number of IGISServer objects in the collection.
Public ReadOnly Property Count As Integer
public int Count {get;}
IGISServers.Element Property
Returns the IGISServer at the specified index.
Public Function get_Element ( _
ByVal index As Integer _
) As IGISServer
public IGISServer get_Element (
int index
);
IGISServers.Insert Method
Inserts an IGISServer into the collection at the specified index.
Public Sub Insert ( _
ByVal index As Integer, _
ByVal Server As IGISServer _
)
public void Insert (
int index,
IGISServer Server
);
IGISServers.Remove Method
Removes the IGISServer at the specified index.
Public Sub Remove ( _
ByVal index As Integer _
)
public void Remove (
int index
);
IGISServers.RemoveAll Method
Removes all of the IGISServer objects in the collection.
Public Sub RemoveAll ( _
)
public void RemoveAll (
);
Classes that implement IGISServers
Classes | Description |
---|