Nevron .NET Vision
Nevron.UI.WebForm.Controls Namespace / NAjaxTechnologyHelper Class / ProcessAjaxCallbackEvent Method
The instance of the client-server technology, used by the web control.
The client side event data
A command objecto to be initialized with the event data
The session state object that contains the state of the web control.
For mouse events is initialized by this method with the x coordinate of the mouse
For mouse events is initialized by this method with the y coordinate of the mouse


In This Topic
    ProcessAjaxCallbackEvent Method
    In This Topic
    Parses the client side event data and fires the corresponding server side event of the web control.
    Syntax
    'Declaration
     
    
    Public Shared Sub ProcessAjaxCallbackEvent( _
       ByVal technology As NClientServerTechnology, _
       ByVal eventArgument As System.String, _
       ByVal command As NCallbackCommand, _
       ByVal state As NStateObject, _
       ByRef mouseXPos As System.Integer, _
       ByRef mouseYPos As System.Integer _
    ) 
    'Usage
     
    
    Dim technology As NClientServerTechnology
    Dim eventArgument As System.String
    Dim command As NCallbackCommand
    Dim state As NStateObject
    Dim mouseXPos As System.Integer
    Dim mouseYPos As System.Integer
     
    NAjaxTechnologyHelper.ProcessAjaxCallbackEvent(technology, eventArgument, command, state, mouseXPos, mouseYPos)
    public static void ProcessAjaxCallbackEvent( 
       NClientServerTechnology technology,
       System.string eventArgument,
       NCallbackCommand command,
       NStateObject state,
       ref System.int mouseXPos,
       ref System.int mouseYPos
    )

    Parameters

    technology
    The instance of the client-server technology, used by the web control.
    eventArgument
    The client side event data
    command
    A command objecto to be initialized with the event data
    state
    The session state object that contains the state of the web control.
    mouseXPos
    For mouse events is initialized by this method with the x coordinate of the mouse
    mouseYPos
    For mouse events is initialized by this method with the y coordinate of the mouse
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also