IWebMatrixHost.ShowExceptionMessage Method
Applies to v2.
Shows a message as a result of an exception.
Namespace: Microsoft.WebMatrix.Extensibility
Assembly: Microsoft.WebMatrix.Extensibility (in Microsoft.WebMatrix.Extensibility.dll)
Syntax
'Declaration
Sub ShowExceptionMessage ( _
title As String, _
message As String, _
exception As Exception _
)
'Usage
Dim instance As IWebMatrixHost
Dim title As String
Dim message As String
Dim exception As Exception
instance.ShowExceptionMessage(title, _
message, exception)
void ShowExceptionMessage(
string title,
string message,
Exception exception
)
void ShowExceptionMessage(
String^ title,
String^ message,
Exception^ exception
)
abstract ShowExceptionMessage :
title:string *
message:string *
exception:Exception -> unit
function ShowExceptionMessage(
title : String,
message : String,
exception : Exception
)
Parameters
title
Type: System.StringTitle for the dialog.
message
Type: System.StringMessage for the dialog.
exception
Type: System.ExceptionUnderlying exception.