19 references to VersionInfo
System.Web (19)
Compilation\AssemblyBuilder.cs (1)
534declaration.Arguments.Add(new CodeAttributeArgument(new CodePrimitiveExpression(VersionInfo.SystemWebVersion)));
Configuration\HttpRuntimeSection.cs (1)
790String version = VersionInfo.SystemWebVersion;
Configuration\IdentitySection.cs (1)
235if (VersionInfo.ExeName == "aspnet_wp") {
ErrorFormatter.cs (2)
431SR.GetString(SR.Error_Formatter_CLR_Build) + VersionInfo.ClrVersion + 432SR.GetString(SR.Error_Formatter_ASPNET_Build) + VersionInfo.EngineVersion + "\r\n\r\n");
Handlers\TraceHandler.cs (2)
214_writer.Write(SR.GetString(SR.Error_Formatter_CLR_Build) + VersionInfo.ClrVersion + 215SR.GetString(SR.Error_Formatter_ASPNET_Build) + VersionInfo.EngineVersion + "\r\n\r\n");
Hosting\HostingEnvironment.cs (3)
1244String process = VersionInfo.ExeName; 1254return VersionInfo.ExeName == "w3wp"; 1260return VersionInfo.ExeName == "ii----press";
HttpRuntime.cs (4)
2798throw new HttpException(SR.GetString(SR.Aspnet_not_installed, VersionInfo.SystemWebVersion)); 2825throw new HttpException(SR.GetString(SR.Aspnet_not_installed, VersionInfo.SystemWebVersion)); 2843string aspNetVersion = VersionInfo.SystemWebVersion; 2858throw new HttpException(SR.GetString(SR.Aspnet_not_installed, VersionInfo.SystemWebVersion));
UI\TraceContext.cs (2)
456output.Write(SR.GetString(SR.Error_Formatter_CLR_Build) + VersionInfo.ClrVersion + 457SR.GetString(SR.Error_Formatter_ASPNET_Build) + VersionInfo.EngineVersion + "\r\n\r\n");
UI\Util.cs (2)
332string version = VersionInfo.SystemWebVersion.Substring(0, VersionInfo.SystemWebVersion.LastIndexOf('.')).Replace('.', '_');
Util\Misc.cs (1)
155String ver = VersionInfo.SystemWebVersion;