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