I like to use new jQueryAjaxOptions() and then set the properties on that object to create my parameters for generating Ajax requests, as it gives syntax highlighting. As opposed to using new jQueryAjaxOptions(params) that does not give compile time verification of options.

However this presents a problem when trying to use the typed delegates for success and error (AjaxRequestCallback<TData> and AjaxErrorEventHandler<TData>)

Is there a way to get the typed callbacks with my prefered method or is this only possible when using the params version of the jQueryAjaxOptions class?

Code example follows (this gives squiggly lines all over):

jQueryAjaxOptions options = new jQueryAjaxOptions();
options.Url = "/Url/To/Json/Supplier";
options.Success = new AjaxRequestCallback<JSonResult>(
                delegate(JSonResult data, string textStatus, jQueryDataHttpRequest<JSonResult> request) 
                { 
                    //Result code goes here 
                })
jQuery.Ajax(options);

My current (ugly) workaround is this:

jQueryAjaxOptions options = new jQueryAjaxOptions();
options.Url = "/Url/To/Json/Supplier";
options.Success = delegate(object data, string textStatus, jQueryXmlHttpRequest request) 
                { 
                    HandleJsonResult((JSonResult)data); //Casting data object
                })
jQuery.Ajax(options);

And Defined elsewhere is the result handler:

void HandleJsonResult(JSonResult data)
{
    // Result code goes here
}
link|improve this question

54% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.