示例#1
0
 public void DebugReturn(DebugLevel level, string message)
 {
     ControlledView.LogDebug(string.Format("{0} - {1}", level, message));
 }
示例#2
0
 public void OnUnexpectedOperationResponse(OperationResponse operationResponse)
 {
     ControlledView.LogError(string.Format("unexpected operation error {0} from operation {1}",
                                           operationResponse.ReturnCode, operationResponse.OperationCode));
 }
示例#3
0
 public void OnUnexpectedStatusCode(StatusCode statusCode)
 {
     ControlledView.LogError(string.Format("unexpected Status {0}", statusCode));
 }
示例#4
0
 public void OnUnexpectedEvent(EventData eventData)
 {
     ControlledView.LogError(string.Format("unexpected event {0}", eventData.Code));
 }