Class Parameter.ObjectWrapper
Represents an internal wrapper class for object values used during parameter processing.
Inheritance
Namespace: Telerik.ReportViewer.Html5.WebForms
Assembly: Telerik.ReportViewer.Html5.WebForms.dll
Syntax
public class ObjectWrapper
Remarks
Used internally by the HTML5 WebForms ReportViewer for parameter value handling and should not be used directly in application code.
Constructors
ObjectWrapper()
Initializes a new instance of the ObjectWrapper class with a null value.
Declaration
public ObjectWrapper()
ObjectWrapper(String)
Initializes a new instance of the ObjectWrapper class with the specified string value.
Declaration
public ObjectWrapper(string value)
Parameters
|
System.String
value
The string value to wrap in the ObjectWrapper instance. |
Properties
Value
Gets or sets the wrapped object value.
Declaration
public object Value { get; set; }
Property Value
|
System.Object
|
Methods
ToString()
Returns the string representation of the wrapped value.
Declaration
public override string ToString()
Returns
|
System.String
The string representation of the wrapped value, or an empty string if the value is null. |