123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using System.Reflection;
- using System.Diagnostics;
- using System.Text;
- namespace COSXML.Common
- {
- public sealed class CosVersion
- {
- private static string SDKVersion = "5.4.34.0";
- public static string GetUserAgent()
- {
- StringBuilder userAgent = new StringBuilder();
- userAgent.Append("cos-net-sdk").Append('.')
- .Append(SDKVersion);
- return userAgent.ToString();
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
- }
|