IServiceDescriptionArray Interface

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
Method Add Add an element to the array.
Read-only property Count The number of items in the array.
Read-only property Element The Element at the specified index.
Write-only property Element The Element at the specified index.
Method Insert Insert an element into the array.
Method Remove Remove an element from the array.
Method 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

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.