1 write to Options
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (1)
CookieTempDataProviderTest.cs (1)
359Options = options
16 references to Options
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (16)
CookieTempDataProviderTest.cs (16)
50Assert.Equal("/", cookieInfo.Options.Path); 174Assert.Equal("/", cookieInfo.Options.Path); 175Assert.Equal(expectedSecureFlag, cookieInfo.Options.Secure); 176Assert.True(cookieInfo.Options.HttpOnly); 177Assert.Null(cookieInfo.Options.Expires); 178Assert.Null(cookieInfo.Options.Domain); 209Assert.Equal(expectedCookiePath, cookieInfo.Options.Path); 210Assert.False(cookieInfo.Options.Secure); 211Assert.True(cookieInfo.Options.HttpOnly); 212Assert.Null(cookieInfo.Options.Expires); 213Assert.Null(cookieInfo.Options.Domain); 258Assert.Equal(expectedCookiePath, cookieInfo.Options.Path); 259Assert.Equal(expectedDomain, cookieInfo.Options.Domain); 260Assert.False(cookieInfo.Options.Secure); 261Assert.True(cookieInfo.Options.HttpOnly); 262Assert.Null(cookieInfo.Options.Expires);