Class WebServiceParameterCollectionBase<T>
Inheritance
Namespace: Telerik.Reporting
Assembly: Telerik.Reporting.dll
Syntax
public class WebServiceParameterCollectionBase<T> : Collection<T>, IList<T>, ICollection<T>, IList, ICollection, IReadOnlyList<T>, IReadOnlyCollection<T>, IEnumerable<T>, IEnumerable where T : WebServiceParameter, new()
Type Parameters
T
|
Constructors
WebServiceParameterCollectionBase()
Initializes a new instance of the
Declaration
public WebServiceParameterCollectionBase()
WebServiceParameterCollectionBase(T[])
Initializes a new instance of the Web
Declaration
public WebServiceParameterCollectionBase(T[] parameters)
Parameters
T[]
parameters
Specifies a range of parameters to add to the collection. |
WebServiceParameterCollectionBase(WebServiceParameterCollectionBase<T>)
Initializes a new instance of the Web
Declaration
public WebServiceParameterCollectionBase(WebServiceParameterCollectionBase<T> parameters)
Parameters
Web Specifies a range of parameters to add to the collection. |
Properties
Item[String]
Gets the parameter with the specified name from the collection.
Declaration
public T this[string name] { get; }
Parameters
System. Specifies the name of a parameter from the collection. |
Property Value
T
The parameter with the specified name from the collection. |
Methods
Add(String, WebServiceParameterType)
Adds a new parameter with the specified name and data type to the collection.
Declaration
public void Add(string name, WebServiceParameterType type)
Parameters
System. Specifies the name of the new parameter to add to the collection. |
Web Specifies the type of the new parameter to add to the collection. |
Add(String, WebServiceParameterType, Object)
Adds a new parameter with the specified name, data type and value to the collection.
Declaration
public void Add(string name, WebServiceParameterType type, object value)
Parameters
System. Specifies the name of the new parameter to add to the collection. |
Web Specifies the data type of the new parameter to add to the collection. |
System. Specifies the value of the new parameter to add to the collection. |
AddRange(IEnumerable<T>)
Adds a range of parameters to the collection.
Declaration
public void AddRange(IEnumerable<T> parameters)
Parameters
System. Specifies a range of parameters to add to the collection. |
AddRange(WebServiceParameterCollectionBase<T>)
Adds a range of parameters to the collection.
Declaration
public void AddRange(WebServiceParameterCollectionBase<T> parameters)
Parameters
Web Specifies a range of parameters to add to the collection. |
Clone(WebServiceParameterCollectionBase<T>)
Declaration
public void Clone(WebServiceParameterCollectionBase<T> source)
Parameters
Web
|
Contains(String)
Determines if the collection contains a parameter with the specified name.
Declaration
public bool Contains(string name)
Parameters
System. Specifies the name of a parameter from the collection. |
Returns
System. True if a parameter with the specified name exists, False otherwise. |
FirstOrNullWithCaseFallback(String)
Declaration
public WebServiceParameter FirstOrNullWithCaseFallback(string parameterName)
Parameters
System.
|
Returns
ToArray()
Converts the collection to an array of parameters.
Declaration
public WebServiceParameter[] ToArray()
Returns
Web Array of parameters contained in the collection. |