HttpRequestExtensions.GetFriendlyUrlFileExtension Method (HttpRequestBase)

.NET Framework 4.5

Returns the extension of the file Friendly URLs mapped this request to.

Namespace:  Microsoft.AspNet.FriendlyUrls
Assembly:  Microsoft.AspNet.FriendlyUrls (in Microsoft.AspNet.FriendlyUrls.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function GetFriendlyUrlFileExtension ( _
    httpRequest As HttpRequestBase _
) As String
'Usage
Dim httpRequest As HttpRequestBase 
Dim returnValue As String 

returnValue = httpRequest.GetFriendlyUrlFileExtension()
public static string GetFriendlyUrlFileExtension(
    this HttpRequestBase httpRequest
)
[ExtensionAttribute]
public:
static String^ GetFriendlyUrlFileExtension(
    HttpRequestBase^ httpRequest
)
static member GetFriendlyUrlFileExtension : 
        httpRequest:HttpRequestBase -> string
public static function GetFriendlyUrlFileExtension(
    httpRequest : HttpRequestBase
) : String

Parameters

Return Value

Type: System.String
The file extension, e.g. .aspx.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type HttpRequestBase. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.111) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.111).

See Also

Reference

HttpRequestExtensions Class

GetFriendlyUrlFileExtension Overload

Microsoft.AspNet.FriendlyUrls Namespace