NoTransforms() 공개 메소드

public NoTransforms ( ) : CachePolicy
리턴 CachePolicy
예제 #1
0
			public void SetUp()
			{
				_httpCachePolicyBase = MockRepository.GenerateMock<HttpCachePolicyBase>();

				_cachePolicy = new CachePolicy();
				_cachePolicy.AllowResponseInBrowserHistory(true);
				_cachePolicy.ETag("etag");
				_cachePolicy.NoStore();
				_cachePolicy.NoTransforms();
				_cachePolicy.OmitVaryStar(true);
				_cachePolicy.ProxyMaxAge(TimeSpan.FromHours(1));
				_cachePolicy.Revalidation(HttpCacheRevalidation.AllCaches);
			}
예제 #2
0
			public void SetUp()
			{
				_cachePolicy = new CachePolicy();
				_cachePolicy.NoTransforms();
			}