Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my windows phone application i am using singleton classes for sending and receiving web request and response. So in my current implementation i will call the web request from viewmodel along with an Action<> delegate. For retrieving error call back and it is working fine for me. My issue is that when i fast app switches the application, the web request cancels and it returns a web error. I need to get this web exception in my view model. How i can get this response by using the Func<> delegate. Please anyone help me to solve this issue.

    // viewmodel code
          private void Login()
          {
                   LoginContoller.Instance.Login(userName, password, ErrorCallbackCompleted);
          }
           //callback
          private void ErrorCallbackCompleted()
        {

        }

        // code inside singleton class

          public static Action ErrorCallbackResponse;

    public void Login (string userName, string password, Action errorCallback)
         {
       ErrorCallbackResponse = errorCallback;
         }

    public void GetErrorCallBack(Exception ex) // This method will be invoked from the error callback of web request class
    {
        ErrorCallbackResponse();
        I need to pass this ex object to  my viewmodel using Func<>
    }
share|improve this question

1 Answer

up vote 2 down vote accepted
// viewmodel code
  private void Login()
  {
       LoginContoller.Instance.Login(userName, password, ErrorCallbackCompleted);
  }

 //callback
 public void ErrorCallbackCompleted(Exception exception)
 {
 }

// code inside singleton class

  public static Action<Exception> ErrorCallbackResponse;

public void Login (string userName, string password, Action<Exception> errorCallback)
{
   ErrorCallbackResponse = errorCallback;
}

public void GetErrorCallBack(Exception ex) // This method will be invoked from the error callback of web request class
{
    ErrorCallbackResponse(ex);
}
share|improve this answer
So what is the use of Func<>; and when we will use this Func<>, i am totally confude about these two. – Nitha Paul May 21 '12 at 7:15
@NithaPaul Func<> delegates are used if you want to your function to return something. Action<>s are used if you want to return null. For instance, if you have a function; int A() -> you should use func<> delegate since it returns some value. – daryal May 21 '12 at 7:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.