Class PreparedParameterValueEventArgs
Provides data for the PreparedParameterValue event.
Inheritance
Namespace: Telerik.Windows.Controls.DomainServices
Assembly: Telerik.Windows.Controls.DomainServices.dll
Syntax
public class PreparedParameterValueEventArgs : EventArgs
Properties
Error
Gets a value indicating which error occurred during parameter value preparation.
Declaration
public Exception Error { get; }
Property Value
System.Exception
An Exception instance, if an error occurred during a parameter value preparation; otherwise null. |
Parameter
Gets the parameter.
Declaration
public QueryParameter Parameter { get; }
Property Value
QueryParameter
The parameter. |
PreparedValue
Gets or sets the prepared value.
Declaration
public object PreparedValue { get; set; }
Property Value
System.Object
The prepared value. |