HeaderUtilities.ContainsCacheDirective(StringValues, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Check if a target directive exists among the set of given cache control directives.
public:
static bool ContainsCacheDirective(Microsoft::Extensions::Primitives::StringValues cacheControlDirectives, System::String ^ targetDirectives);
public static bool ContainsCacheDirective (Microsoft.Extensions.Primitives.StringValues cacheControlDirectives, string targetDirectives);
static member ContainsCacheDirective : Microsoft.Extensions.Primitives.StringValues * string -> bool
Public Shared Function ContainsCacheDirective (cacheControlDirectives As StringValues, targetDirectives As String) As Boolean
Parameters
- cacheControlDirectives
- StringValues
The StringValues containing the set of cache control directives.
- targetDirectives
- String
The target cache control directives to look for.
Returns
true
if targetDirectives
is contained in cacheControlDirectives
;
otherwise, false
.