IDisplayMode.GetDisplayInfo Method
Returns this method to display all the information for the web pages.
Namespace: System.Web.WebPages
Assembly: System.Web.WebPages (in System.Web.WebPages.dll)
Syntax
'Declaration
Function GetDisplayInfo ( _
httpContext As HttpContextBase, _
virtualPath As String, _
virtualPathExists As Func(Of String, Boolean) _
) As DisplayInfo
'Usage
Dim instance As IDisplayMode
Dim httpContext As HttpContextBase
Dim virtualPath As String
Dim virtualPathExists As Func(Of String, Boolean)
Dim returnValue As DisplayInfo
returnValue = instance.GetDisplayInfo(httpContext, _
virtualPath, virtualPathExists)
DisplayInfo GetDisplayInfo(
HttpContextBase httpContext,
string virtualPath,
Func<string, bool> virtualPathExists
)
DisplayInfo^ GetDisplayInfo(
HttpContextBase^ httpContext,
String^ virtualPath,
Func<String^, bool>^ virtualPathExists
)
abstract GetDisplayInfo :
httpContext:HttpContextBase *
virtualPath:string *
virtualPathExists:Func<string, bool> -> DisplayInfo
function GetDisplayInfo(
httpContext : HttpContextBase,
virtualPath : String,
virtualPathExists : Func<String, boolean>
) : DisplayInfo
Parameters
- httpContext
Type: System.Web.HttpContextBase
The HTTP context.
- virtualPath
Type: System.String
The virtual path.
- virtualPathExists
Type: System.Func<String, Boolean>
true if the virtual path exists; otherwise, false.
Return Value
Type: System.Web.WebPages.DisplayInfo
The method to display all the information for the web pages.