DataDrivenAdapterBase.RaiseEvent(Object, String, String, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Raises events where necessary. There is no synchronization context marshalling. Events go out on the thread that raised them. It is the listeners responsibility to perform an application-specific thread marshalling as required.
protected:
void RaiseEvent(System::Object ^ sender, System::String ^ eventName, System::String ^ controlName, System::String ^ controlValue);
protected void RaiseEvent (object sender, string eventName, string controlName, string controlValue);
member this.RaiseEvent : obj * string * string * string -> unit
Protected Sub RaiseEvent (sender As Object, eventName As String, controlName As String, controlValue As String)
Parameters
- sender
- Object
Specifies the sender. When null
, defaults to "this."
- eventName
- String
Specifies the name of the event.
- controlName
- String
Specifies the name of the control. Empty when not applicable to any named control.
- controlValue
- String
Specifies the value of the control. Populated with extra data associated with the event when necessary.