IWebMatrixHost.ShowExceptionMessage-Methode
Die folgenden Ausführungen gelten für v2.
Zeigt eine Meldung als Ergebnis einer Ausnahme an.
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
)
Parameter
title
Typ: System.StringDer Titel des Dialogfelds.
message
Typ: System.StringDie Meldung für das Dialogfeld.
exception
Typ: System.ExceptionDie zugrunde liegende Ausnahme.