Пример #1
0
 public MonoHttpEvent(string eventType, MonoHttpClient httpClient, HttpResponse response)
     : base(eventType, httpClient)
 {
     Response = response;
 }
Пример #2
0
 public MonoHttpEvent(string eventType, MonoHttpClient httpClient, Exception exceptionCaught)
     : base(eventType, httpClient)
 {
     Exception = exceptionCaught;
 }
Пример #3
0
 public MonoHttpEvent(string eventType, MonoHttpClient httpClient, long bytesRead, long totalLength)
     : base(eventType, httpClient)
 {
     BytesRead   = bytesRead;
     TotalLength = totalLength;
 }