WebReferenceCollection.Add(WebReference) Method

Definition

Appends a WebReference instance to the collection.

public:
 int Add(System::Web::Services::Description::WebReference ^ webReference);
public int Add (System.Web.Services.Description.WebReference webReference);
member this.Add : System.Web.Services.Description.WebReference -> int
Public Function Add (webReference As WebReference) As Integer

Parameters

webReference
WebReference

The Web reference to append.

Returns

The index of the appended Web reference.

Examples

The following code example illustrates the use of this method. This code example is part of a larger example provided for the WebReferenceCollection class.

// Create a web reference collection.
WebReferenceCollection references = new WebReferenceCollection();
references.Add(reference);

Remarks

The index of the appended Web reference is greater by one than the index of the last appended Web reference. The index is zero based.

Applies to