Provides access to members that control the contents of web services description array.
When To Use
The IServiceDescriptionArray interface is intended only for use by the web service catalog template applications that are included as part of the Application Developer Framework for ArcGIS for Server. To learn more about these templates, refer to the ArcGIS for Server developer documentation.
Members
Name | Description | |
---|---|---|
Add | Add an element to the array. | |
Count | The number of items in the array. | |
Element | The Element at the specified index. | |
Element | The Element at the specified index. | |
Insert | Insert an element into the array. | |
Remove | Remove an element from the array. | |
RemoveAll | Remove all elements from the array. |
IServiceDescriptionArray.Add Method
Add an element to the array.
Public Sub Add ( _
ByVal Element As IServiceDescription _
)
public void Add (
IServiceDescription Element
);
IServiceDescriptionArray.Count Property
The number of items in the array.
Public ReadOnly Property Count As Integer
public int Count {get;}
IServiceDescriptionArray.Element Property
The Element at the specified index.
Public Function get_Element ( _
ByVal index As Integer _
) As IServiceDescription
Public Sub set_Element ( _
ByVal index As Integer, _
ByVal Element As IServiceDescription _
)
public IServiceDescription get_Element (
int index
);
public void set_Element (
int index,
IServiceDescription Element
);
IServiceDescriptionArray.Element Property
The Element at the specified index.
Public Function get_Element ( _
ByVal index As Integer _
) As IServiceDescription
Public Sub set_Element ( _
ByVal index As Integer, _
ByVal Element As IServiceDescription _
)
public IServiceDescription get_Element (
int index
);
public void set_Element (
int index,
IServiceDescription Element
);
IServiceDescriptionArray.Insert Method
Insert an element into the array.
Public Sub Insert ( _
ByVal index As Integer, _
ByVal Element As IServiceDescription _
)
public void Insert (
int index,
IServiceDescription Element
);
IServiceDescriptionArray.Remove Method
Remove an element from the array.
Public Sub Remove ( _
ByVal index As Integer _
)
public void Remove (
int index
);
IServiceDescriptionArray.RemoveAll Method
Remove all elements from the array.
Public Sub RemoveAll ( _
)
public void RemoveAll (
);
Classes that implement IServiceDescriptionArray
Classes | Description |
---|