25 references to PreconditionState
Microsoft.AspNetCore.StaticFiles (25)
StaticFileContext.cs (25)
37private PreconditionState _ifMatchState; 38private PreconditionState _ifNoneMatchState; 39private PreconditionState _ifModifiedSinceState; 40private PreconditionState _ifUnmodifiedSinceState; 68_ifMatchState = PreconditionState.Unspecified; 69_ifNoneMatchState = PreconditionState.Unspecified; 70_ifModifiedSinceState = PreconditionState.Unspecified; 71_ifUnmodifiedSinceState = PreconditionState.Unspecified; 151_ifMatchState = PreconditionState.PreconditionFailed; 156_ifMatchState = PreconditionState.ShouldProcess; 166_ifNoneMatchState = PreconditionState.ShouldProcess; 171_ifNoneMatchState = PreconditionState.NotModified; 188_ifModifiedSinceState = modified ? PreconditionState.ShouldProcess : PreconditionState.NotModified; 196_ifUnmodifiedSinceState = unmodified ? PreconditionState.ShouldProcess : PreconditionState.PreconditionFailed; 281public PreconditionState GetPreconditionState() 284private static PreconditionState GetMaxPreconditionState(params PreconditionState[] states) 286PreconditionState max = PreconditionState.Unspecified; 309case PreconditionState.Unspecified: 310case PreconditionState.ShouldProcess: 335case PreconditionState.NotModified: 339case PreconditionState.PreconditionFailed: