Exemplo n.º 1
0
 public static void ErrorReceived(Fault f)
 {
     Dictionary<string, object> dc = f.Content as Dictionary<string, object>;
     foreach (KeyValuePair<string, object> pair in dc)
     {
         Console.WriteLine("{0}: {1}", pair.Key, pair.Value);
     }
 }
Exemplo n.º 2
0
 public RPCConnectResult(RPCConnectResultType result, Fault fault)
 {
     Result = result;
     FlexLoginFault = fault;
 }
Exemplo n.º 3
0
 void Error(Fault fault)
 {
     ErrorOccurred = true;
     ProcessReply();
 }
Exemplo n.º 4
0
 void OnLoginFault(Fault fault)
 {
     ConnectCallback(new RPCConnectResult(RPCConnectResultType.LoginFault, fault));
 }