15 references to OSVersion
System.ServiceModel (15)
System\ServiceModel\Channels\AppContainerInfo.cs (1)
34isAppContainerSupported = OSEnvironmentHelper.IsAtLeast(OSVersion.Win8);
System\ServiceModel\Channels\WebSocketHelper.cs (1)
219return OSEnvironmentHelper.IsAtLeast(OSVersion.Win8);
System\ServiceModel\OSEnvironmentHelper.cs (13)
11private static readonly OSVersion currentVersion; 23currentVersion = OSVersion.PreWinXP; 27currentVersion = OSVersion.WinXP; 31currentVersion = OSVersion.Win2003; 35currentVersion = OSVersion.WinVista; 39currentVersion = OSVersion.Win7; 43currentVersion = OSVersion.Win8; 48currentVersion = OSVersion.PostWin8; 54currentVersion = OSVersion.Unknown; 63return IsAtLeast(OSVersion.WinVista); 86internal static bool IsAtLeast(OSVersion version) 91static bool IsAtLeast(OSVersion version, byte servicePack) 93Fx.Assert(version != OSVersion.Unknown, "Unknown OS");