New to Telerik ReportingStart a free 30-day trial

Represents a parameter in a WebServiceDataSource component.

Definition

Namespace:Telerik.Reporting

Assembly:Telerik.Reporting.dll

Syntax:

C#
[TypeConverter(typeof(WebServiceParameterConverter))]
public class WebServiceParameter : DataSourceParameter

Inheritance: objectDataSourceParameterWebServiceParameter

Derived Classes: GraphQLParameter

Inherited Members DataSourceParameter.NotifyPropertyChanged(string)DataSourceParameter.NameDataSourceParameter.ValueDataSourceParameter.PropertyChanged

Constructors

Initializes a new instance of the WebServiceParameter class.

C#
public WebServiceParameter()

Initializes a new instance of the WebServiceParameter class.

C#
public WebServiceParameter(string name, WebServiceParameterType type, object value)
Parameters:namestring

Specifies the name of the parameter.

typeWebServiceParameterType

Specifies the type of the parameter.

valueobject

Specifies the value of the parameter.

Initializes a new instance of the WebServiceParameter class.

C#
public WebServiceParameter(string name, WebServiceParameterType type)
Parameters:namestring

Specifies the name of the parameter.

typeWebServiceParameterType

Specifies the type of the parameter.

Properties

Gets or sets the type of the parameter.

C#
public WebServiceParameterType WebServiceParameterType { get; set; }