├── .gitignore ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── LICENSE.txt ├── README.md ├── Sixeyed.Caching.Tests.Stubs.Website ├── App_Start │ ├── FilterConfig.cs │ ├── RouteConfig.cs │ └── WebApiConfig.cs ├── Controllers │ └── Page1Controller.cs ├── Global.asax ├── Global.asax.cs ├── Page2.aspx ├── Page2.aspx.cs ├── Page2.aspx.designer.cs ├── Properties │ └── AssemblyInfo.cs ├── Sixeyed.Caching.Tests.Stubs.Website.csproj ├── Views │ ├── Page1 │ │ └── Index.cshtml │ └── Web.config ├── Web.Debug.config ├── Web.Release.config ├── Web.config └── packages.config ├── Sixeyed.Caching.Tests ├── App.config ├── CacheHandlerTests.cs ├── CacheTests.cs ├── Caching │ ├── CacheBaseTests.cs │ ├── CacheKeyBuilderTests.cs │ └── Caches │ │ ├── AppFabricCacheTests.cs │ │ ├── AzureTableStorageCacheTests.cs │ │ ├── DefaultCacheTests.cs │ │ ├── DiskCacheTests.cs │ │ ├── InProcessCacheTests.cs │ │ ├── MemcachedCacheTests.cs │ │ ├── MemoryCacheTests.cs │ │ ├── NCacheExpressTests.cs │ │ └── NullCacheTests.cs ├── Containers │ ├── ContainerTests.cs │ └── Interception │ │ └── Cache │ │ └── CacheCallHandlerTests.cs ├── Extensions │ ├── IMethodInvocationExtensionsTests.cs │ └── StringExtensionsTests.cs ├── Logging │ └── LogTests.cs ├── OutOfProcessCacheTests.cs ├── Properties │ └── AssemblyInfo.cs ├── Serialization │ └── Serializers │ │ ├── BinarySerializerTests.cs │ │ ├── JsonSerializerTests.cs │ │ └── XmlSerializerTests.cs ├── Sixeyed.Caching.Tests.csproj ├── Stubs │ ├── Caching │ │ ├── CustomKeyPrefixMethodInvocationStub.cs │ │ ├── MethodInvocationStub.cs │ │ ├── MethodLevelCachingStub.cs │ │ ├── StubRequest.cs │ │ └── StubRequestWithEnum.cs │ └── Containers │ │ ├── ConfiguredStub.cs │ │ ├── ContainedStub.cs │ │ └── RepositoryStub.cs └── packages.config ├── Sixeyed.Caching.sln ├── Sixeyed.Caching ├── Cache.cs ├── CacheKeyBuilder.cs ├── CacheType.cs ├── Caches │ ├── AppFabricCache.cs │ ├── AzureTableStorageCache.cs │ ├── DiskCache.cs │ ├── MemcachedCache.cs │ ├── MemoryCache.cs │ ├── NCacheExpress.cs │ ├── NullCache.cs │ └── TableStorage │ │ └── CachedEntity.cs ├── Configuration │ ├── CacheConfiguration.cs │ ├── Collections │ │ └── CacheTargetCollection.cs │ └── Elements │ │ ├── CacheTargetElement.cs │ │ ├── DiskCacheElement.cs │ │ ├── EncryptionElement.cs │ │ └── PerformanceCounterElement.cs ├── Containers │ ├── Container.cs │ ├── Interception │ │ └── Cache │ │ │ ├── CacheAttribute.cs │ │ │ ├── CacheCallHandler.cs │ │ │ └── ICacheKeyPrefixProvider.cs │ └── Lifetime │ │ ├── Lifetime.cs │ │ └── PerCallContextLifetimeManager.cs ├── Cryptography │ └── Encryption.cs ├── Extensions │ ├── ExceptionExtensions.cs │ ├── ICacheExtensions.cs │ ├── IMethodInvocationExtensions.cs │ ├── ISerializerExtensions.cs │ └── StringExtensions.cs ├── Instrumentation │ ├── PerformanceCounter.cs │ ├── PerformanceCounterCategoryMetadata.cs │ ├── PerformanceCounterMetadata.cs │ └── PerformanceCounters │ │ └── FxCounters.cs ├── Logging │ ├── Log.cs │ ├── LogLevel.cs │ └── Logger.cs ├── Properties │ └── AssemblyInfo.cs ├── Serialization │ ├── ISerializer.cs │ ├── SerializationFormat.cs │ ├── Serializer.cs │ └── Serializers │ │ ├── BinarySerializer.cs │ │ ├── JsonSerializer.cs │ │ ├── NullSerializer.cs │ │ └── XmlSerializer.cs ├── Sixeyed.Caching.csproj ├── Spec │ ├── CacheBase.cs │ ├── CacheItem.cs │ └── ICache.cs └── packages.config └── readme.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/README.md -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests.Stubs.Website/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests.Stubs.Website/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests.Stubs.Website/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests.Stubs.Website/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests.Stubs.Website/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests.Stubs.Website/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests.Stubs.Website/Controllers/Page1Controller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests.Stubs.Website/Controllers/Page1Controller.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests.Stubs.Website/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests.Stubs.Website/Global.asax -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests.Stubs.Website/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests.Stubs.Website/Global.asax.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests.Stubs.Website/Page2.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests.Stubs.Website/Page2.aspx -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests.Stubs.Website/Page2.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests.Stubs.Website/Page2.aspx.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests.Stubs.Website/Page2.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests.Stubs.Website/Page2.aspx.designer.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests.Stubs.Website/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests.Stubs.Website/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests.Stubs.Website/Sixeyed.Caching.Tests.Stubs.Website.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests.Stubs.Website/Sixeyed.Caching.Tests.Stubs.Website.csproj -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests.Stubs.Website/Views/Page1/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests.Stubs.Website/Views/Page1/Index.cshtml -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests.Stubs.Website/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests.Stubs.Website/Views/Web.config -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests.Stubs.Website/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests.Stubs.Website/Web.Debug.config -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests.Stubs.Website/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests.Stubs.Website/Web.Release.config -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests.Stubs.Website/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests.Stubs.Website/Web.config -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests.Stubs.Website/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests.Stubs.Website/packages.config -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/App.config -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/CacheHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/CacheHandlerTests.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/CacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/CacheTests.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Caching/CacheBaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Caching/CacheBaseTests.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Caching/CacheKeyBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Caching/CacheKeyBuilderTests.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Caching/Caches/AppFabricCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Caching/Caches/AppFabricCacheTests.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Caching/Caches/AzureTableStorageCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Caching/Caches/AzureTableStorageCacheTests.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Caching/Caches/DefaultCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Caching/Caches/DefaultCacheTests.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Caching/Caches/DiskCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Caching/Caches/DiskCacheTests.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Caching/Caches/InProcessCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Caching/Caches/InProcessCacheTests.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Caching/Caches/MemcachedCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Caching/Caches/MemcachedCacheTests.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Caching/Caches/MemoryCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Caching/Caches/MemoryCacheTests.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Caching/Caches/NCacheExpressTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Caching/Caches/NCacheExpressTests.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Caching/Caches/NullCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Caching/Caches/NullCacheTests.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Containers/ContainerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Containers/ContainerTests.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Containers/Interception/Cache/CacheCallHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Containers/Interception/Cache/CacheCallHandlerTests.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Extensions/IMethodInvocationExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Extensions/IMethodInvocationExtensionsTests.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Extensions/StringExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Extensions/StringExtensionsTests.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Logging/LogTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Logging/LogTests.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/OutOfProcessCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/OutOfProcessCacheTests.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Serialization/Serializers/BinarySerializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Serialization/Serializers/BinarySerializerTests.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Serialization/Serializers/JsonSerializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Serialization/Serializers/JsonSerializerTests.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Serialization/Serializers/XmlSerializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Serialization/Serializers/XmlSerializerTests.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Sixeyed.Caching.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Sixeyed.Caching.Tests.csproj -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Stubs/Caching/CustomKeyPrefixMethodInvocationStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Stubs/Caching/CustomKeyPrefixMethodInvocationStub.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Stubs/Caching/MethodInvocationStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Stubs/Caching/MethodInvocationStub.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Stubs/Caching/MethodLevelCachingStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Stubs/Caching/MethodLevelCachingStub.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Stubs/Caching/StubRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Stubs/Caching/StubRequest.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Stubs/Caching/StubRequestWithEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Stubs/Caching/StubRequestWithEnum.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Stubs/Containers/ConfiguredStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Stubs/Containers/ConfiguredStub.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Stubs/Containers/ContainedStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Stubs/Containers/ContainedStub.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/Stubs/Containers/RepositoryStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/Stubs/Containers/RepositoryStub.cs -------------------------------------------------------------------------------- /Sixeyed.Caching.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.Tests/packages.config -------------------------------------------------------------------------------- /Sixeyed.Caching.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching.sln -------------------------------------------------------------------------------- /Sixeyed.Caching/Cache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Cache.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/CacheKeyBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/CacheKeyBuilder.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/CacheType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/CacheType.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Caches/AppFabricCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Caches/AppFabricCache.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Caches/AzureTableStorageCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Caches/AzureTableStorageCache.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Caches/DiskCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Caches/DiskCache.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Caches/MemcachedCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Caches/MemcachedCache.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Caches/MemoryCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Caches/MemoryCache.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Caches/NCacheExpress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Caches/NCacheExpress.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Caches/NullCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Caches/NullCache.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Caches/TableStorage/CachedEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Caches/TableStorage/CachedEntity.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Configuration/CacheConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Configuration/CacheConfiguration.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Configuration/Collections/CacheTargetCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Configuration/Collections/CacheTargetCollection.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Configuration/Elements/CacheTargetElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Configuration/Elements/CacheTargetElement.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Configuration/Elements/DiskCacheElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Configuration/Elements/DiskCacheElement.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Configuration/Elements/EncryptionElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Configuration/Elements/EncryptionElement.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Configuration/Elements/PerformanceCounterElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Configuration/Elements/PerformanceCounterElement.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Containers/Container.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Containers/Container.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Containers/Interception/Cache/CacheAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Containers/Interception/Cache/CacheAttribute.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Containers/Interception/Cache/CacheCallHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Containers/Interception/Cache/CacheCallHandler.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Containers/Interception/Cache/ICacheKeyPrefixProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Containers/Interception/Cache/ICacheKeyPrefixProvider.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Containers/Lifetime/Lifetime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Containers/Lifetime/Lifetime.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Containers/Lifetime/PerCallContextLifetimeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Containers/Lifetime/PerCallContextLifetimeManager.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Cryptography/Encryption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Cryptography/Encryption.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Extensions/ExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Extensions/ExceptionExtensions.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Extensions/ICacheExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Extensions/ICacheExtensions.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Extensions/IMethodInvocationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Extensions/IMethodInvocationExtensions.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Extensions/ISerializerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Extensions/ISerializerExtensions.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Instrumentation/PerformanceCounter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Instrumentation/PerformanceCounter.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Instrumentation/PerformanceCounterCategoryMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Instrumentation/PerformanceCounterCategoryMetadata.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Instrumentation/PerformanceCounterMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Instrumentation/PerformanceCounterMetadata.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Instrumentation/PerformanceCounters/FxCounters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Instrumentation/PerformanceCounters/FxCounters.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Logging/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Logging/Log.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Logging/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Logging/LogLevel.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Logging/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Logging/Logger.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Serialization/ISerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Serialization/ISerializer.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Serialization/SerializationFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Serialization/SerializationFormat.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Serialization/Serializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Serialization/Serializer.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Serialization/Serializers/BinarySerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Serialization/Serializers/BinarySerializer.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Serialization/Serializers/JsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Serialization/Serializers/JsonSerializer.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Serialization/Serializers/NullSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Serialization/Serializers/NullSerializer.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Serialization/Serializers/XmlSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Serialization/Serializers/XmlSerializer.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Sixeyed.Caching.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Sixeyed.Caching.csproj -------------------------------------------------------------------------------- /Sixeyed.Caching/Spec/CacheBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Spec/CacheBase.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Spec/CacheItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Spec/CacheItem.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/Spec/ICache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/Spec/ICache.cs -------------------------------------------------------------------------------- /Sixeyed.Caching/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/Sixeyed.Caching/packages.config -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sixeyed/caching/HEAD/readme.txt --------------------------------------------------------------------------------