7 references to GetInt32
Microsoft.AspNetCore.Session.Tests (5)
SessionTests.cs (5)
175int? value = context.Session.GetInt32("Key"); 224int? value = context.Session.GetInt32("Key"); 283int? value = context.Session.GetInt32("Key"); 392int? value = context.Session.GetInt32("Key"); 465var value = context.Session.GetInt32("Key");
SessionSample (2)
Startup.cs (2)
51visits = context.Session.GetInt32("visits") ?? 0; 60visits = context.Session.GetInt32("visits") ?? 0;