Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Logs an error using the message, and optionally the stack-trace from the given exception and any inner exceptions.
MSBuild is now included in Visual Studio instead of the .NET Framework. You can use MSBuild 12.0 side-by-side with versions previously deployed with the .NET Framework.For more information, see What's New in MSBuild 12.0.
Namespace: Microsoft.Build.Utilities
Assembly: Microsoft.Build.Utilities.Core (in Microsoft.Build.Utilities.Core.dll)
Syntax
'Declaration
Public Sub LogErrorFromException ( _
exception As Exception, _
showStackTrace As Boolean, _
showDetail As Boolean, _
file As String _
)
public void LogErrorFromException(
Exception exception,
bool showStackTrace,
bool showDetail,
string file
)
public:
void LogErrorFromException(
Exception^ exception,
bool showStackTrace,
bool showDetail,
String^ file
)
member LogErrorFromException :
exception:Exception *
showStackTrace:bool *
showDetail:bool *
file:string -> unit
public function LogErrorFromException(
exception : Exception,
showStackTrace : boolean,
showDetail : boolean,
file : String
)
Parameters
exception
Type: System.ExceptionThe exception to log.
showStackTrace
Type: System.Booleantrue to include the stack trace in the log; otherwise, false.
showDetail
Type: System.Booleantrue to log exception types and any inner exceptions; otherwise, false.
file
Type: System.StringThe name of the file related to the exception, or nulla null reference (Nothing in Visual Basic) if the project file should be logged.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | e is nulla null reference (Nothing in Visual Basic). |
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.