123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using COSXML.Model;
- using COSXML.CosException;
- using System.IO;
- namespace COSXML.Callback
- {
-
-
-
-
-
- public delegate void OnProgressCallback(long completed, long total);
-
-
-
- public delegate void OnNotifyGetResponse();
-
-
-
-
-
-
-
- public delegate void OnSuccessCallback<T>(T cosResult)
- where T : CosResult;
-
-
-
-
-
-
-
- public delegate void OnFailedCallback(CosClientException clientException, CosServerException serverException);
-
-
-
-
-
-
-
-
-
- public delegate void OnParseStream(Stream inputStream, string contentType, long contentLength);
- }
|