HttpRuntime.TargetFramework Property

Definition

Gets the version of the .NET Framework that the current web application targets.

public:
 static property Version ^ TargetFramework { Version ^ get(); };
public static Version TargetFramework { get; }
static member TargetFramework : Version
Public Shared ReadOnly Property TargetFramework As Version

Property Value

The version of the .NET Framework that the current web application targets.

Remarks

This property is normally set by using the targetFramework attribute of the httpRuntime element in the Web.config file.

This property is not guaranteed to return a correct value if the current application domain is not an ASP.NET application domain.

Applies to