├── .github └── workflows │ ├── build-and-test.yml │ └── publish.yml ├── .gitignore ├── .trae └── rules │ └── project_rules.md ├── CLAUDE.md ├── Directory.Build.props ├── Directory.Packages.props ├── DotCommon.sln ├── LICENSE ├── Nuget.Config ├── README.md ├── common.props ├── docs └── database.md ├── samples └── DotCommon.ConsoleTest │ ├── DotCommon.ConsoleTest.csproj │ ├── Program.cs │ ├── RSASignTest.cs │ ├── log4net.config │ └── nlog.config ├── src ├── DotCommon.AspNetCore.Mvc │ ├── DotCommon.AspNetCore.Mvc.csproj │ └── DotCommon │ │ └── AspNetCore │ │ └── Mvc │ │ ├── Cors │ │ ├── WildcardCorsService.cs │ │ └── WildcardCorsServiceExtensions.cs │ │ ├── Extensions │ │ └── HttpRequestExtensions.cs │ │ └── Formatters │ │ ├── RawRequestBodyFormatter.cs │ │ └── RawRequestBodyFormatterExtensions.cs ├── DotCommon.AutoMapper │ ├── DotCommon.AutoMapper.csproj │ ├── DotCommon │ │ ├── AutoMapper │ │ │ ├── AutoMapperAutoObjectMappingProvider.cs │ │ │ ├── DotCommonAutoMapperConfigurationContext.cs │ │ │ ├── DotCommonAutoMapperOptions.cs │ │ │ ├── IDotCommonAutoMapperConfigurationContext.cs │ │ │ ├── IMapperAccessor.cs │ │ │ └── MapperAccessor.cs │ │ └── ObjectMapping │ │ │ └── AutoMapperObjectMapperExtensions.cs │ └── Microsoft │ │ └── Extensions │ │ └── DependencyInjection │ │ └── DotCommonAutoMapperServiceCollectionExtensions.cs ├── DotCommon.Caching │ ├── DotCommon.Caching.csproj │ ├── DotCommon │ │ └── Caching │ │ │ ├── CacheNameAttribute.cs │ │ │ ├── DistributedCache.cs │ │ │ ├── DistributedCacheKeyNormalizeArgs.cs │ │ │ ├── DistributedCacheKeyNormalizer.cs │ │ │ ├── DotCommonDistributedCacheOptions.cs │ │ │ ├── Hybrid │ │ │ ├── DotCommonHybridCache.cs │ │ │ ├── DotCommonHybridCacheJsonSerializer.cs │ │ │ ├── DotCommonHybridCacheJsonSerializerFactory.cs │ │ │ ├── DotCommonHybridCacheOptions.cs │ │ │ └── IHybridCache.cs │ │ │ ├── ICacheSupportsMultipleItems.cs │ │ │ ├── IDistributedCache.cs │ │ │ ├── IDistributedCacheKeyNormalizer.cs │ │ │ ├── IDistributedCacheSerializer.cs │ │ │ ├── UnitOfWorkCacheItem.cs │ │ │ ├── UnitOfWorkCacheItemExtensions.cs │ │ │ └── Utf8JsonDistributedCacheSerializer.cs │ └── Microsoft │ │ └── Extensions │ │ └── DependencyInjection │ │ └── ServiceCollectionExtensions.cs ├── DotCommon.Crypto │ ├── DotCommon.Crypto.csproj │ ├── DotCommon │ │ └── Crypto │ │ │ ├── RSA │ │ │ ├── IRSAEncryptionService.cs │ │ │ ├── RSAEncryptionService.cs │ │ │ ├── RSAEncryptionServiceExtensions.cs │ │ │ ├── RSAExtensions.cs │ │ │ └── RSAPaddingNames.cs │ │ │ ├── SM2 │ │ │ ├── DotCommonSm2EncryptionOptions.cs │ │ │ ├── ISm2EncryptionService.cs │ │ │ ├── Sm2EncryptionNames.cs │ │ │ ├── Sm2EncryptionService.cs │ │ │ ├── Sm2EncryptionServiceExtensions.cs │ │ │ └── Sm2Extensions.cs │ │ │ ├── SM3 │ │ │ ├── ISm3EncryptionService.cs │ │ │ ├── Sm3EncryptionService.cs │ │ │ └── Sm3EncryptionServiceExtensions.cs │ │ │ └── SM4 │ │ │ ├── DotCommonSm4EncryptionOptions.cs │ │ │ ├── ISm4EncryptionService.cs │ │ │ ├── Sm4EncryptionNames.cs │ │ │ ├── Sm4EncryptionService.cs │ │ │ └── Sm4EncryptionServiceExtensions.cs │ └── Microsoft │ │ └── Extensions │ │ └── DependencyInjection │ │ └── ServiceCollectionExtensions.cs └── DotCommon │ ├── DotCommon.csproj │ ├── DotCommon │ ├── Check.cs │ ├── Collections │ │ ├── Generic │ │ │ └── CollectionUtil.cs │ │ ├── ITypeList.cs │ │ └── TypeList.cs │ ├── DependencyInjection │ │ ├── IObjectAccessor.cs │ │ └── ObjectAccessor.cs │ ├── DisposeAction.cs │ ├── DotCommonException.cs │ ├── Encrypt │ │ ├── AESHelper.cs │ │ ├── Base64Helper.cs │ │ ├── MD5Helper.cs │ │ ├── RSACommon.cs │ │ ├── RSAHelper.cs │ │ └── TripleDESHelper.cs │ ├── IO │ │ ├── DirectoryHelper.cs │ │ └── FileHelper.cs │ ├── Json │ │ ├── DotCommonJsonOptions.cs │ │ ├── IJsonSerializer.cs │ │ └── SystemTextJson │ │ │ ├── DotCommonDefaultJsonTypeInfoResolver.cs │ │ │ ├── DotCommonSystemTextJsonSerializer.cs │ │ │ ├── DotCommonSystemTextJsonSerializerModifiersOptions.cs │ │ │ ├── DotCommonSystemTextJsonSerializerOptions.cs │ │ │ ├── JsonConverters │ │ │ ├── DotCommonDateTimeConverter.cs │ │ │ ├── DotCommonNullableDateTimeConverter.cs │ │ │ ├── DotCommonNullableStringToGuidConverter.cs │ │ │ ├── DotCommonStringToBooleanConverter.cs │ │ │ ├── DotCommonStringToEnumConverter.cs │ │ │ ├── DotCommonStringToEnumFactory.cs │ │ │ ├── DotCommonStringToGuidConverter.cs │ │ │ └── ObjectToInferredTypesConverter.cs │ │ │ └── Modifiers │ │ │ ├── DotCommonDateTimeConverterModifier.cs │ │ │ ├── DotCommonIgnorePropertiesModifiers.cs │ │ │ └── DotCommonIncludeNonPublicPropertiesModifiers.cs │ ├── NameValue.cs │ ├── ObjectMapping │ │ ├── DefaultObjectMapper.cs │ │ ├── IAutoObjectMappingProvider.cs │ │ ├── IMapFrom.cs │ │ ├── IMapTo.cs │ │ ├── IObjectMapper.cs │ │ ├── NotImplementedAutoObjectMappingProvider.cs │ │ └── ObjectMapperExtensions.cs │ ├── Reflecting │ │ ├── EmitMapper.cs │ │ ├── EmitUtil.cs │ │ ├── ExpressionMapper.cs │ │ ├── MemberInfoExtensions.cs │ │ ├── PropertyInfoUtil.cs │ │ ├── ReflectionUtil.cs │ │ └── TypeUtil.cs │ ├── Reflection │ │ └── ReflectionHelper.cs │ ├── Scheduling │ │ ├── IScheduleService.cs │ │ ├── LimitedConcurrencyLevelTaskScheduler.cs │ │ ├── ScheduleService.cs │ │ └── Worker.cs │ ├── Serialization │ │ ├── DefaultObjectSerializer.cs │ │ └── IObjectSerializer.cs │ ├── Threading │ │ ├── AmbientDataContextAmbientScopeProvider.cs │ │ ├── AsyncHelper.cs │ │ ├── AsyncLocalAmbientDataContext.cs │ │ ├── AsyncLocalSimpleScopeExtensions.cs │ │ ├── AsyncOneTimeRunner.cs │ │ ├── CancellationTokenOverride.cs │ │ ├── CancellationTokenProviderBase.cs │ │ ├── CancellationTokenProviderExtensions.cs │ │ ├── IAmbientDataContext.cs │ │ ├── IAmbientScopeProvider.cs │ │ ├── ICancellationTokenProvider.cs │ │ ├── IRunnable.cs │ │ ├── InternalAsyncHelper.cs │ │ ├── LockExtensions.cs │ │ ├── NullCancellationTokenProvider.cs │ │ ├── OneTimeRunner.cs │ │ └── SemaphoreSlimExtensions.cs │ ├── Timing │ │ ├── Clock.cs │ │ ├── CurrentTimezoneProvider.cs │ │ ├── CurrentTimezoneProviderExtensions.cs │ │ ├── DisableDateTimeNormalizationAttribute.cs │ │ ├── DotCommonClockOptions.cs │ │ ├── IClock.cs │ │ ├── ICurrentTimezoneProvider.cs │ │ ├── ITimezoneProvider.cs │ │ ├── TZConvertTimezoneProvider.cs │ │ ├── TimeZoneConsts.cs │ │ ├── TimeZoneHelper.cs │ │ └── TimingSettingNames.cs │ └── Utility │ │ ├── BufferQueue.cs │ │ ├── ByteBufferUtil.cs │ │ ├── ChineseCalendar.cs │ │ ├── ConvertUtil.cs │ │ ├── DateTimeUtil.cs │ │ ├── EnumUtil.cs │ │ ├── GuidUtil.cs │ │ ├── HMACUtil.cs │ │ ├── HexUtil.cs │ │ ├── HttpMethodUtil.cs │ │ ├── MathUtil.cs │ │ ├── MimeTypeNameUtil.cs │ │ ├── NetUtil.cs │ │ ├── ObjectId.cs │ │ ├── PathUtil.cs │ │ ├── PinYinUtil.cs │ │ ├── RMBConverter.cs │ │ ├── RandomUtil.cs │ │ ├── RequestUtil.cs │ │ ├── SHAUtil.cs │ │ ├── Snowflake.cs │ │ ├── StreamUtil.cs │ │ ├── StringUtil.cs │ │ ├── UnilayerXml.cs │ │ ├── UrlUtil.cs │ │ ├── Validator.cs │ │ └── ValueRange.cs │ ├── Microsoft │ └── Extensions │ │ └── DependencyInjection │ │ ├── ServiceCollectionCommonExtensions.cs │ │ ├── ServiceCollectionExtensions.cs │ │ ├── ServiceCollectionObjectAccessorExtensions.cs │ │ ├── ServiceDescriptorExtensions.cs │ │ └── ServiceProviderKeyedServiceExtensions.cs │ └── System │ ├── Collections │ └── Generic │ │ ├── CollectionExtensions.cs │ │ ├── ConcurrentDictionaryExtensions.cs │ │ ├── DictionaryExtensions.cs │ │ ├── EnumerableExtensions.cs │ │ └── ListExtensions.cs │ ├── ComparableExtensions.cs │ ├── IO │ └── StreamExtensions.cs │ ├── ObjectExtensions.cs │ ├── StringExtensions.cs │ ├── Text │ └── Json │ │ └── JsonSerializerOptionsHelper.cs │ ├── Threading │ ├── ReaderWriterLockSlimExtensions.cs │ └── Tasks │ │ ├── TaskExtensions.cs │ │ └── TaskFactoryExtensions.cs │ └── TypeExtensions.cs └── test ├── DotCommon.AspNetCore.Mvc.Test ├── DotCommon.AspNetCore.Mvc.Test.csproj └── WildcardCorsServiceTest.cs └── DotCommon.Test ├── AutoMapper ├── AutoMapperTest.cs ├── TestOrder.cs └── TestUser.cs ├── DependencyInjection ├── ObjectAccessorTest.cs ├── ServiceCollectionCommonExtensionsTest.cs └── ServiceCollectionExtensionsTest.cs ├── DisposeActionTest.cs ├── DotCommon.Test.csproj ├── Encrypt ├── AESHelperTest.cs ├── Base64HelperTest.cs ├── MD5HelperTest.cs ├── RSAEncryptionServiceTest.cs ├── RSAHelperTest.cs ├── RSAHelper_Netstandard_21Test.cs ├── Sm2EncryptionServiceExtensionsTest.cs ├── Sm2EncryptionServiceTest.cs ├── Sm3EncryptionServiceTest.cs ├── Sm4EncryptionServiceTest.cs └── TripleDESHelperTest.cs ├── Extensions ├── CollectionExtensionsTest.cs ├── DictionaryExtensionsTest.cs ├── EnumerableExtensionsTest.cs ├── ListExtensionsTest.cs ├── ObjectExtensionsTest.cs ├── ReaderWriterLockSlimExtensionsTest.cs ├── StringExtensionsTest.cs ├── TaskExtensionsTest.cs ├── TaskFactoryExtensionsTest.cs └── TypeExtensionsTest.cs ├── IO └── DirectoryHelperTest.cs ├── Reflecting ├── EmitMapperTest.cs ├── EmitUtilTest.cs ├── ExpressionMapperMultiTypeDemo.cs ├── ExpressionMapperTest.cs ├── MultiTypeConversionDemo.cs ├── PropertyInfoUtilTest.cs ├── ReflectionUtilTest.cs └── TypeUtilTest.cs ├── RemoteServiceAttributeTest.cs ├── Serializing ├── DefaultBinarySerializerTest.cs ├── DefaultJsonSerializerTest.cs ├── DefaultXmlSerializerTest.cs ├── LimitedConcurrencyLevelTaskSchedulerTest.cs ├── ScheduleServiceTest.cs ├── TestSerializeClass.cs └── WorkerTest.cs ├── TestBase.cs ├── TextJson ├── ServiceCollectionExtensionsTest.cs └── TextJsonSerializerTest.cs └── Utility ├── BufferQueueTest.cs ├── ByteBufferUtilTest.cs ├── ChineseCalendarTest.cs ├── ConvertFactoryTest.cs ├── DateTimeUtilTest.cs ├── EnumUtilTest.cs ├── GuidUtilTest.cs ├── HMACUtilTest.cs ├── HexUtilTest.cs ├── HttpMethodUtilTest.cs ├── MathUtilTest.cs ├── MimeTypeNameUtilTest.cs ├── NetUtilTest.cs ├── ObjectIdTest.cs ├── PathUtilTest.cs ├── PinYinUtilTest.cs ├── RMBConverterTest.cs ├── RandomUtilTest.cs ├── RequestUtilTest.cs ├── SHAUtilTest.cs ├── SnowflakeTest.cs ├── StreamUtilTest.cs ├── StringUtilTest.cs ├── UnilayerXmlTest.cs ├── UrlUtilTest.cs ├── ValidatorTest.cs └── ValueRangeTest.cs /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/.gitignore -------------------------------------------------------------------------------- /.trae/rules/project_rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/.trae/rules/project_rules.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /DotCommon.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/DotCommon.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/LICENSE -------------------------------------------------------------------------------- /Nuget.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/Nuget.Config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/README.md -------------------------------------------------------------------------------- /common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/common.props -------------------------------------------------------------------------------- /docs/database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/docs/database.md -------------------------------------------------------------------------------- /samples/DotCommon.ConsoleTest/DotCommon.ConsoleTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/samples/DotCommon.ConsoleTest/DotCommon.ConsoleTest.csproj -------------------------------------------------------------------------------- /samples/DotCommon.ConsoleTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/samples/DotCommon.ConsoleTest/Program.cs -------------------------------------------------------------------------------- /samples/DotCommon.ConsoleTest/RSASignTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/samples/DotCommon.ConsoleTest/RSASignTest.cs -------------------------------------------------------------------------------- /samples/DotCommon.ConsoleTest/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/samples/DotCommon.ConsoleTest/log4net.config -------------------------------------------------------------------------------- /samples/DotCommon.ConsoleTest/nlog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/samples/DotCommon.ConsoleTest/nlog.config -------------------------------------------------------------------------------- /src/DotCommon.AspNetCore.Mvc/DotCommon.AspNetCore.Mvc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.AspNetCore.Mvc/DotCommon.AspNetCore.Mvc.csproj -------------------------------------------------------------------------------- /src/DotCommon.AspNetCore.Mvc/DotCommon/AspNetCore/Mvc/Cors/WildcardCorsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.AspNetCore.Mvc/DotCommon/AspNetCore/Mvc/Cors/WildcardCorsService.cs -------------------------------------------------------------------------------- /src/DotCommon.AspNetCore.Mvc/DotCommon/AspNetCore/Mvc/Cors/WildcardCorsServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.AspNetCore.Mvc/DotCommon/AspNetCore/Mvc/Cors/WildcardCorsServiceExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon.AspNetCore.Mvc/DotCommon/AspNetCore/Mvc/Extensions/HttpRequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.AspNetCore.Mvc/DotCommon/AspNetCore/Mvc/Extensions/HttpRequestExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon.AspNetCore.Mvc/DotCommon/AspNetCore/Mvc/Formatters/RawRequestBodyFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.AspNetCore.Mvc/DotCommon/AspNetCore/Mvc/Formatters/RawRequestBodyFormatter.cs -------------------------------------------------------------------------------- /src/DotCommon.AspNetCore.Mvc/DotCommon/AspNetCore/Mvc/Formatters/RawRequestBodyFormatterExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.AspNetCore.Mvc/DotCommon/AspNetCore/Mvc/Formatters/RawRequestBodyFormatterExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon.AutoMapper/DotCommon.AutoMapper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.AutoMapper/DotCommon.AutoMapper.csproj -------------------------------------------------------------------------------- /src/DotCommon.AutoMapper/DotCommon/AutoMapper/AutoMapperAutoObjectMappingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.AutoMapper/DotCommon/AutoMapper/AutoMapperAutoObjectMappingProvider.cs -------------------------------------------------------------------------------- /src/DotCommon.AutoMapper/DotCommon/AutoMapper/DotCommonAutoMapperConfigurationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.AutoMapper/DotCommon/AutoMapper/DotCommonAutoMapperConfigurationContext.cs -------------------------------------------------------------------------------- /src/DotCommon.AutoMapper/DotCommon/AutoMapper/DotCommonAutoMapperOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.AutoMapper/DotCommon/AutoMapper/DotCommonAutoMapperOptions.cs -------------------------------------------------------------------------------- /src/DotCommon.AutoMapper/DotCommon/AutoMapper/IDotCommonAutoMapperConfigurationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.AutoMapper/DotCommon/AutoMapper/IDotCommonAutoMapperConfigurationContext.cs -------------------------------------------------------------------------------- /src/DotCommon.AutoMapper/DotCommon/AutoMapper/IMapperAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.AutoMapper/DotCommon/AutoMapper/IMapperAccessor.cs -------------------------------------------------------------------------------- /src/DotCommon.AutoMapper/DotCommon/AutoMapper/MapperAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.AutoMapper/DotCommon/AutoMapper/MapperAccessor.cs -------------------------------------------------------------------------------- /src/DotCommon.AutoMapper/DotCommon/ObjectMapping/AutoMapperObjectMapperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.AutoMapper/DotCommon/ObjectMapping/AutoMapperObjectMapperExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon.AutoMapper/Microsoft/Extensions/DependencyInjection/DotCommonAutoMapperServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.AutoMapper/Microsoft/Extensions/DependencyInjection/DotCommonAutoMapperServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon.Caching/DotCommon.Caching.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Caching/DotCommon.Caching.csproj -------------------------------------------------------------------------------- /src/DotCommon.Caching/DotCommon/Caching/CacheNameAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Caching/DotCommon/Caching/CacheNameAttribute.cs -------------------------------------------------------------------------------- /src/DotCommon.Caching/DotCommon/Caching/DistributedCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Caching/DotCommon/Caching/DistributedCache.cs -------------------------------------------------------------------------------- /src/DotCommon.Caching/DotCommon/Caching/DistributedCacheKeyNormalizeArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Caching/DotCommon/Caching/DistributedCacheKeyNormalizeArgs.cs -------------------------------------------------------------------------------- /src/DotCommon.Caching/DotCommon/Caching/DistributedCacheKeyNormalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Caching/DotCommon/Caching/DistributedCacheKeyNormalizer.cs -------------------------------------------------------------------------------- /src/DotCommon.Caching/DotCommon/Caching/DotCommonDistributedCacheOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Caching/DotCommon/Caching/DotCommonDistributedCacheOptions.cs -------------------------------------------------------------------------------- /src/DotCommon.Caching/DotCommon/Caching/Hybrid/DotCommonHybridCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Caching/DotCommon/Caching/Hybrid/DotCommonHybridCache.cs -------------------------------------------------------------------------------- /src/DotCommon.Caching/DotCommon/Caching/Hybrid/DotCommonHybridCacheJsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Caching/DotCommon/Caching/Hybrid/DotCommonHybridCacheJsonSerializer.cs -------------------------------------------------------------------------------- /src/DotCommon.Caching/DotCommon/Caching/Hybrid/DotCommonHybridCacheJsonSerializerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Caching/DotCommon/Caching/Hybrid/DotCommonHybridCacheJsonSerializerFactory.cs -------------------------------------------------------------------------------- /src/DotCommon.Caching/DotCommon/Caching/Hybrid/DotCommonHybridCacheOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Caching/DotCommon/Caching/Hybrid/DotCommonHybridCacheOptions.cs -------------------------------------------------------------------------------- /src/DotCommon.Caching/DotCommon/Caching/Hybrid/IHybridCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Caching/DotCommon/Caching/Hybrid/IHybridCache.cs -------------------------------------------------------------------------------- /src/DotCommon.Caching/DotCommon/Caching/ICacheSupportsMultipleItems.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Caching/DotCommon/Caching/ICacheSupportsMultipleItems.cs -------------------------------------------------------------------------------- /src/DotCommon.Caching/DotCommon/Caching/IDistributedCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Caching/DotCommon/Caching/IDistributedCache.cs -------------------------------------------------------------------------------- /src/DotCommon.Caching/DotCommon/Caching/IDistributedCacheKeyNormalizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Caching/DotCommon/Caching/IDistributedCacheKeyNormalizer.cs -------------------------------------------------------------------------------- /src/DotCommon.Caching/DotCommon/Caching/IDistributedCacheSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Caching/DotCommon/Caching/IDistributedCacheSerializer.cs -------------------------------------------------------------------------------- /src/DotCommon.Caching/DotCommon/Caching/UnitOfWorkCacheItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Caching/DotCommon/Caching/UnitOfWorkCacheItem.cs -------------------------------------------------------------------------------- /src/DotCommon.Caching/DotCommon/Caching/UnitOfWorkCacheItemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Caching/DotCommon/Caching/UnitOfWorkCacheItemExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon.Caching/DotCommon/Caching/Utf8JsonDistributedCacheSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Caching/DotCommon/Caching/Utf8JsonDistributedCacheSerializer.cs -------------------------------------------------------------------------------- /src/DotCommon.Caching/Microsoft/Extensions/DependencyInjection/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Caching/Microsoft/Extensions/DependencyInjection/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon.Crypto/DotCommon.Crypto.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Crypto/DotCommon.Crypto.csproj -------------------------------------------------------------------------------- /src/DotCommon.Crypto/DotCommon/Crypto/RSA/IRSAEncryptionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Crypto/DotCommon/Crypto/RSA/IRSAEncryptionService.cs -------------------------------------------------------------------------------- /src/DotCommon.Crypto/DotCommon/Crypto/RSA/RSAEncryptionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Crypto/DotCommon/Crypto/RSA/RSAEncryptionService.cs -------------------------------------------------------------------------------- /src/DotCommon.Crypto/DotCommon/Crypto/RSA/RSAEncryptionServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Crypto/DotCommon/Crypto/RSA/RSAEncryptionServiceExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon.Crypto/DotCommon/Crypto/RSA/RSAExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Crypto/DotCommon/Crypto/RSA/RSAExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon.Crypto/DotCommon/Crypto/RSA/RSAPaddingNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Crypto/DotCommon/Crypto/RSA/RSAPaddingNames.cs -------------------------------------------------------------------------------- /src/DotCommon.Crypto/DotCommon/Crypto/SM2/DotCommonSm2EncryptionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Crypto/DotCommon/Crypto/SM2/DotCommonSm2EncryptionOptions.cs -------------------------------------------------------------------------------- /src/DotCommon.Crypto/DotCommon/Crypto/SM2/ISm2EncryptionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Crypto/DotCommon/Crypto/SM2/ISm2EncryptionService.cs -------------------------------------------------------------------------------- /src/DotCommon.Crypto/DotCommon/Crypto/SM2/Sm2EncryptionNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Crypto/DotCommon/Crypto/SM2/Sm2EncryptionNames.cs -------------------------------------------------------------------------------- /src/DotCommon.Crypto/DotCommon/Crypto/SM2/Sm2EncryptionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Crypto/DotCommon/Crypto/SM2/Sm2EncryptionService.cs -------------------------------------------------------------------------------- /src/DotCommon.Crypto/DotCommon/Crypto/SM2/Sm2EncryptionServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Crypto/DotCommon/Crypto/SM2/Sm2EncryptionServiceExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon.Crypto/DotCommon/Crypto/SM2/Sm2Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Crypto/DotCommon/Crypto/SM2/Sm2Extensions.cs -------------------------------------------------------------------------------- /src/DotCommon.Crypto/DotCommon/Crypto/SM3/ISm3EncryptionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Crypto/DotCommon/Crypto/SM3/ISm3EncryptionService.cs -------------------------------------------------------------------------------- /src/DotCommon.Crypto/DotCommon/Crypto/SM3/Sm3EncryptionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Crypto/DotCommon/Crypto/SM3/Sm3EncryptionService.cs -------------------------------------------------------------------------------- /src/DotCommon.Crypto/DotCommon/Crypto/SM3/Sm3EncryptionServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Crypto/DotCommon/Crypto/SM3/Sm3EncryptionServiceExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon.Crypto/DotCommon/Crypto/SM4/DotCommonSm4EncryptionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Crypto/DotCommon/Crypto/SM4/DotCommonSm4EncryptionOptions.cs -------------------------------------------------------------------------------- /src/DotCommon.Crypto/DotCommon/Crypto/SM4/ISm4EncryptionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Crypto/DotCommon/Crypto/SM4/ISm4EncryptionService.cs -------------------------------------------------------------------------------- /src/DotCommon.Crypto/DotCommon/Crypto/SM4/Sm4EncryptionNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Crypto/DotCommon/Crypto/SM4/Sm4EncryptionNames.cs -------------------------------------------------------------------------------- /src/DotCommon.Crypto/DotCommon/Crypto/SM4/Sm4EncryptionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Crypto/DotCommon/Crypto/SM4/Sm4EncryptionService.cs -------------------------------------------------------------------------------- /src/DotCommon.Crypto/DotCommon/Crypto/SM4/Sm4EncryptionServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Crypto/DotCommon/Crypto/SM4/Sm4EncryptionServiceExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon.Crypto/Microsoft/Extensions/DependencyInjection/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon.Crypto/Microsoft/Extensions/DependencyInjection/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon.csproj -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Check.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Check.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Collections/Generic/CollectionUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Collections/Generic/CollectionUtil.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Collections/ITypeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Collections/ITypeList.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Collections/TypeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Collections/TypeList.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/DependencyInjection/IObjectAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/DependencyInjection/IObjectAccessor.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/DependencyInjection/ObjectAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/DependencyInjection/ObjectAccessor.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/DisposeAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/DisposeAction.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/DotCommonException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/DotCommonException.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Encrypt/AESHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Encrypt/AESHelper.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Encrypt/Base64Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Encrypt/Base64Helper.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Encrypt/MD5Helper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Encrypt/MD5Helper.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Encrypt/RSACommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Encrypt/RSACommon.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Encrypt/RSAHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Encrypt/RSAHelper.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Encrypt/TripleDESHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Encrypt/TripleDESHelper.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/IO/DirectoryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/IO/DirectoryHelper.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/IO/FileHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/IO/FileHelper.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Json/DotCommonJsonOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Json/DotCommonJsonOptions.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Json/IJsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Json/IJsonSerializer.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Json/SystemTextJson/DotCommonDefaultJsonTypeInfoResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Json/SystemTextJson/DotCommonDefaultJsonTypeInfoResolver.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Json/SystemTextJson/DotCommonSystemTextJsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Json/SystemTextJson/DotCommonSystemTextJsonSerializer.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Json/SystemTextJson/DotCommonSystemTextJsonSerializerModifiersOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Json/SystemTextJson/DotCommonSystemTextJsonSerializerModifiersOptions.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Json/SystemTextJson/DotCommonSystemTextJsonSerializerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Json/SystemTextJson/DotCommonSystemTextJsonSerializerOptions.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Json/SystemTextJson/JsonConverters/DotCommonDateTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Json/SystemTextJson/JsonConverters/DotCommonDateTimeConverter.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Json/SystemTextJson/JsonConverters/DotCommonNullableDateTimeConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Json/SystemTextJson/JsonConverters/DotCommonNullableDateTimeConverter.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Json/SystemTextJson/JsonConverters/DotCommonNullableStringToGuidConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Json/SystemTextJson/JsonConverters/DotCommonNullableStringToGuidConverter.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Json/SystemTextJson/JsonConverters/DotCommonStringToBooleanConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Json/SystemTextJson/JsonConverters/DotCommonStringToBooleanConverter.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Json/SystemTextJson/JsonConverters/DotCommonStringToEnumConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Json/SystemTextJson/JsonConverters/DotCommonStringToEnumConverter.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Json/SystemTextJson/JsonConverters/DotCommonStringToEnumFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Json/SystemTextJson/JsonConverters/DotCommonStringToEnumFactory.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Json/SystemTextJson/JsonConverters/DotCommonStringToGuidConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Json/SystemTextJson/JsonConverters/DotCommonStringToGuidConverter.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Json/SystemTextJson/JsonConverters/ObjectToInferredTypesConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Json/SystemTextJson/JsonConverters/ObjectToInferredTypesConverter.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Json/SystemTextJson/Modifiers/DotCommonDateTimeConverterModifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Json/SystemTextJson/Modifiers/DotCommonDateTimeConverterModifier.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Json/SystemTextJson/Modifiers/DotCommonIgnorePropertiesModifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Json/SystemTextJson/Modifiers/DotCommonIgnorePropertiesModifiers.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Json/SystemTextJson/Modifiers/DotCommonIncludeNonPublicPropertiesModifiers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Json/SystemTextJson/Modifiers/DotCommonIncludeNonPublicPropertiesModifiers.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/NameValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/NameValue.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/ObjectMapping/DefaultObjectMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/ObjectMapping/DefaultObjectMapper.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/ObjectMapping/IAutoObjectMappingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/ObjectMapping/IAutoObjectMappingProvider.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/ObjectMapping/IMapFrom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/ObjectMapping/IMapFrom.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/ObjectMapping/IMapTo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/ObjectMapping/IMapTo.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/ObjectMapping/IObjectMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/ObjectMapping/IObjectMapper.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/ObjectMapping/NotImplementedAutoObjectMappingProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/ObjectMapping/NotImplementedAutoObjectMappingProvider.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/ObjectMapping/ObjectMapperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/ObjectMapping/ObjectMapperExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Reflecting/EmitMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Reflecting/EmitMapper.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Reflecting/EmitUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Reflecting/EmitUtil.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Reflecting/ExpressionMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Reflecting/ExpressionMapper.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Reflecting/MemberInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Reflecting/MemberInfoExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Reflecting/PropertyInfoUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Reflecting/PropertyInfoUtil.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Reflecting/ReflectionUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Reflecting/ReflectionUtil.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Reflecting/TypeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Reflecting/TypeUtil.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Reflection/ReflectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Reflection/ReflectionHelper.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Scheduling/IScheduleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Scheduling/IScheduleService.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Scheduling/LimitedConcurrencyLevelTaskScheduler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Scheduling/LimitedConcurrencyLevelTaskScheduler.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Scheduling/ScheduleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Scheduling/ScheduleService.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Scheduling/Worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Scheduling/Worker.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Serialization/DefaultObjectSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Serialization/DefaultObjectSerializer.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Serialization/IObjectSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Serialization/IObjectSerializer.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Threading/AmbientDataContextAmbientScopeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Threading/AmbientDataContextAmbientScopeProvider.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Threading/AsyncHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Threading/AsyncHelper.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Threading/AsyncLocalAmbientDataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Threading/AsyncLocalAmbientDataContext.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Threading/AsyncLocalSimpleScopeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Threading/AsyncLocalSimpleScopeExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Threading/AsyncOneTimeRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Threading/AsyncOneTimeRunner.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Threading/CancellationTokenOverride.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Threading/CancellationTokenOverride.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Threading/CancellationTokenProviderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Threading/CancellationTokenProviderBase.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Threading/CancellationTokenProviderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Threading/CancellationTokenProviderExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Threading/IAmbientDataContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Threading/IAmbientDataContext.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Threading/IAmbientScopeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Threading/IAmbientScopeProvider.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Threading/ICancellationTokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Threading/ICancellationTokenProvider.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Threading/IRunnable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Threading/IRunnable.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Threading/InternalAsyncHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Threading/InternalAsyncHelper.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Threading/LockExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Threading/LockExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Threading/NullCancellationTokenProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Threading/NullCancellationTokenProvider.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Threading/OneTimeRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Threading/OneTimeRunner.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Threading/SemaphoreSlimExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Threading/SemaphoreSlimExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Timing/Clock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Timing/Clock.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Timing/CurrentTimezoneProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Timing/CurrentTimezoneProvider.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Timing/CurrentTimezoneProviderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Timing/CurrentTimezoneProviderExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Timing/DisableDateTimeNormalizationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Timing/DisableDateTimeNormalizationAttribute.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Timing/DotCommonClockOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Timing/DotCommonClockOptions.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Timing/IClock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Timing/IClock.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Timing/ICurrentTimezoneProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Timing/ICurrentTimezoneProvider.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Timing/ITimezoneProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Timing/ITimezoneProvider.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Timing/TZConvertTimezoneProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Timing/TZConvertTimezoneProvider.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Timing/TimeZoneConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Timing/TimeZoneConsts.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Timing/TimeZoneHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Timing/TimeZoneHelper.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Timing/TimingSettingNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Timing/TimingSettingNames.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/BufferQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/BufferQueue.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/ByteBufferUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/ByteBufferUtil.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/ChineseCalendar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/ChineseCalendar.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/ConvertUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/ConvertUtil.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/DateTimeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/DateTimeUtil.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/EnumUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/EnumUtil.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/GuidUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/GuidUtil.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/HMACUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/HMACUtil.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/HexUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/HexUtil.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/HttpMethodUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/HttpMethodUtil.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/MathUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/MathUtil.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/MimeTypeNameUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/MimeTypeNameUtil.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/NetUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/NetUtil.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/ObjectId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/ObjectId.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/PathUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/PathUtil.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/PinYinUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/PinYinUtil.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/RMBConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/RMBConverter.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/RandomUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/RandomUtil.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/RequestUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/RequestUtil.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/SHAUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/SHAUtil.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/Snowflake.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/Snowflake.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/StreamUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/StreamUtil.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/StringUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/StringUtil.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/UnilayerXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/UnilayerXml.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/UrlUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/UrlUtil.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/Validator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/Validator.cs -------------------------------------------------------------------------------- /src/DotCommon/DotCommon/Utility/ValueRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/DotCommon/Utility/ValueRange.cs -------------------------------------------------------------------------------- /src/DotCommon/Microsoft/Extensions/DependencyInjection/ServiceCollectionCommonExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/Microsoft/Extensions/DependencyInjection/ServiceCollectionCommonExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/Microsoft/Extensions/DependencyInjection/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/Microsoft/Extensions/DependencyInjection/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/Microsoft/Extensions/DependencyInjection/ServiceCollectionObjectAccessorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/Microsoft/Extensions/DependencyInjection/ServiceCollectionObjectAccessorExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/Microsoft/Extensions/DependencyInjection/ServiceDescriptorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/Microsoft/Extensions/DependencyInjection/ServiceDescriptorExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/Microsoft/Extensions/DependencyInjection/ServiceProviderKeyedServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/Microsoft/Extensions/DependencyInjection/ServiceProviderKeyedServiceExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/System/Collections/Generic/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/System/Collections/Generic/CollectionExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/System/Collections/Generic/ConcurrentDictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/System/Collections/Generic/ConcurrentDictionaryExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/System/Collections/Generic/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/System/Collections/Generic/DictionaryExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/System/Collections/Generic/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/System/Collections/Generic/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/System/Collections/Generic/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/System/Collections/Generic/ListExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/System/ComparableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/System/ComparableExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/System/IO/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/System/IO/StreamExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/System/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/System/ObjectExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/System/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/System/StringExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/System/Text/Json/JsonSerializerOptionsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/System/Text/Json/JsonSerializerOptionsHelper.cs -------------------------------------------------------------------------------- /src/DotCommon/System/Threading/ReaderWriterLockSlimExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/System/Threading/ReaderWriterLockSlimExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/System/Threading/Tasks/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/System/Threading/Tasks/TaskExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/System/Threading/Tasks/TaskFactoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/System/Threading/Tasks/TaskFactoryExtensions.cs -------------------------------------------------------------------------------- /src/DotCommon/System/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/src/DotCommon/System/TypeExtensions.cs -------------------------------------------------------------------------------- /test/DotCommon.AspNetCore.Mvc.Test/DotCommon.AspNetCore.Mvc.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.AspNetCore.Mvc.Test/DotCommon.AspNetCore.Mvc.Test.csproj -------------------------------------------------------------------------------- /test/DotCommon.AspNetCore.Mvc.Test/WildcardCorsServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.AspNetCore.Mvc.Test/WildcardCorsServiceTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/AutoMapper/AutoMapperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/AutoMapper/AutoMapperTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/AutoMapper/TestOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/AutoMapper/TestOrder.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/AutoMapper/TestUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/AutoMapper/TestUser.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/DependencyInjection/ObjectAccessorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/DependencyInjection/ObjectAccessorTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/DependencyInjection/ServiceCollectionCommonExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/DependencyInjection/ServiceCollectionCommonExtensionsTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/DependencyInjection/ServiceCollectionExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/DependencyInjection/ServiceCollectionExtensionsTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/DisposeActionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/DisposeActionTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/DotCommon.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/DotCommon.Test.csproj -------------------------------------------------------------------------------- /test/DotCommon.Test/Encrypt/AESHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Encrypt/AESHelperTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Encrypt/Base64HelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Encrypt/Base64HelperTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Encrypt/MD5HelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Encrypt/MD5HelperTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Encrypt/RSAEncryptionServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Encrypt/RSAEncryptionServiceTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Encrypt/RSAHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Encrypt/RSAHelperTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Encrypt/RSAHelper_Netstandard_21Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Encrypt/RSAHelper_Netstandard_21Test.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Encrypt/Sm2EncryptionServiceExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Encrypt/Sm2EncryptionServiceExtensionsTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Encrypt/Sm2EncryptionServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Encrypt/Sm2EncryptionServiceTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Encrypt/Sm3EncryptionServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Encrypt/Sm3EncryptionServiceTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Encrypt/Sm4EncryptionServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Encrypt/Sm4EncryptionServiceTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Encrypt/TripleDESHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Encrypt/TripleDESHelperTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Extensions/CollectionExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Extensions/CollectionExtensionsTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Extensions/DictionaryExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Extensions/DictionaryExtensionsTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Extensions/EnumerableExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Extensions/EnumerableExtensionsTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Extensions/ListExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Extensions/ListExtensionsTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Extensions/ObjectExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Extensions/ObjectExtensionsTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Extensions/ReaderWriterLockSlimExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Extensions/ReaderWriterLockSlimExtensionsTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Extensions/StringExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Extensions/StringExtensionsTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Extensions/TaskExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Extensions/TaskExtensionsTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Extensions/TaskFactoryExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Extensions/TaskFactoryExtensionsTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Extensions/TypeExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Extensions/TypeExtensionsTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/IO/DirectoryHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/IO/DirectoryHelperTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Reflecting/EmitMapperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Reflecting/EmitMapperTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Reflecting/EmitUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Reflecting/EmitUtilTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Reflecting/ExpressionMapperMultiTypeDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Reflecting/ExpressionMapperMultiTypeDemo.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Reflecting/ExpressionMapperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Reflecting/ExpressionMapperTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Reflecting/MultiTypeConversionDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Reflecting/MultiTypeConversionDemo.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Reflecting/PropertyInfoUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Reflecting/PropertyInfoUtilTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Reflecting/ReflectionUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Reflecting/ReflectionUtilTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Reflecting/TypeUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Reflecting/TypeUtilTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/RemoteServiceAttributeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/RemoteServiceAttributeTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Serializing/DefaultBinarySerializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Serializing/DefaultBinarySerializerTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Serializing/DefaultJsonSerializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Serializing/DefaultJsonSerializerTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Serializing/DefaultXmlSerializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Serializing/DefaultXmlSerializerTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Serializing/LimitedConcurrencyLevelTaskSchedulerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Serializing/LimitedConcurrencyLevelTaskSchedulerTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Serializing/ScheduleServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Serializing/ScheduleServiceTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Serializing/TestSerializeClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Serializing/TestSerializeClass.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Serializing/WorkerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Serializing/WorkerTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/TestBase.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/TextJson/ServiceCollectionExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/TextJson/ServiceCollectionExtensionsTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/TextJson/TextJsonSerializerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/TextJson/TextJsonSerializerTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/BufferQueueTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/BufferQueueTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/ByteBufferUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/ByteBufferUtilTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/ChineseCalendarTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/ChineseCalendarTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/ConvertFactoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/ConvertFactoryTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/DateTimeUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/DateTimeUtilTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/EnumUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/EnumUtilTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/GuidUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/GuidUtilTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/HMACUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/HMACUtilTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/HexUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/HexUtilTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/HttpMethodUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/HttpMethodUtilTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/MathUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/MathUtilTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/MimeTypeNameUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/MimeTypeNameUtilTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/NetUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/NetUtilTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/ObjectIdTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/ObjectIdTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/PathUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/PathUtilTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/PinYinUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/PinYinUtilTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/RMBConverterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/RMBConverterTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/RandomUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/RandomUtilTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/RequestUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/RequestUtilTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/SHAUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/SHAUtilTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/SnowflakeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/SnowflakeTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/StreamUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/StreamUtilTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/StringUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/StringUtilTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/UnilayerXmlTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/UnilayerXmlTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/UrlUtilTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/UrlUtilTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/ValidatorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/ValidatorTest.cs -------------------------------------------------------------------------------- /test/DotCommon.Test/Utility/ValueRangeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocosip/DotCommon/HEAD/test/DotCommon.Test/Utility/ValueRangeTest.cs --------------------------------------------------------------------------------