Showing
1 changed file
with
2 additions
and
2 deletions
| @@ -41,7 +41,7 @@ typedef enum _ASICachePolicy { | @@ -41,7 +41,7 @@ typedef enum _ASICachePolicy { | ||
| 41 | ASIFallbackToCacheIfLoadFailsCachePolicy = 64 | 41 | ASIFallbackToCacheIfLoadFailsCachePolicy = 64 |
| 42 | } ASICachePolicy; | 42 | } ASICachePolicy; |
| 43 | 43 | ||
| 44 | -// Cache storage policies control whether cached data persists between application launches (ASICachePermanentlyCacheStoragePolicy) or not (ASICachePermanentlyCacheStoragePolicy) | 44 | +// Cache storage policies control whether cached data persists between application launches (ASICachePermanentlyCacheStoragePolicy) or not (ASICacheForSessionDurationCacheStoragePolicy) |
| 45 | // Calling [ASIHTTPRequest clearSession] will remove any data stored using ASICacheForSessionDurationCacheStoragePolicy | 45 | // Calling [ASIHTTPRequest clearSession] will remove any data stored using ASICacheForSessionDurationCacheStoragePolicy |
| 46 | typedef enum _ASICacheStoragePolicy { | 46 | typedef enum _ASICacheStoragePolicy { |
| 47 | ASICacheForSessionDurationCacheStoragePolicy = 0, | 47 | ASICacheForSessionDurationCacheStoragePolicy = 0, |
| @@ -79,7 +79,7 @@ typedef enum _ASICacheStoragePolicy { | @@ -79,7 +79,7 @@ typedef enum _ASICacheStoragePolicy { | ||
| 79 | - (NSString *)pathToCachedResponseDataForURL:(NSURL *)url; | 79 | - (NSString *)pathToCachedResponseDataForURL:(NSURL *)url; |
| 80 | 80 | ||
| 81 | // Returns a path to the cached response headers, if they url | 81 | // Returns a path to the cached response headers, if they url |
| 82 | -- (NSString *)pathToCachedResponseHeadersForURL:(NSURL *)request; | 82 | +- (NSString *)pathToCachedResponseHeadersForURL:(NSURL *)url; |
| 83 | 83 | ||
| 84 | // Returns the location to use to store cached response headers for a particular request | 84 | // Returns the location to use to store cached response headers for a particular request |
| 85 | - (NSString *)pathToStoreCachedResponseHeadersForRequest:(ASIHTTPRequest *)request; | 85 | - (NSString *)pathToStoreCachedResponseHeadersForRequest:(ASIHTTPRequest *)request; |
-
Please register or login to post a comment