Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Logs a load error.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.10.0 (in Microsoft.VisualStudio.Shell.Interop.10.0.dll)
Syntax
'Declaration
Function LogError ( _
ErrorType As UInteger, _
pszMessage As String, _
pszFile As String, _
nLine As Integer, _
nColumn As Integer, _
pszErrorCode As String, _
pszTaskListMessage As String, _
pszUniqueProjectName As String, _
pszHelpKeyword As String _
) As Integer
int LogError(
uint ErrorType,
string pszMessage,
string pszFile,
int nLine,
int nColumn,
string pszErrorCode,
string pszTaskListMessage,
string pszUniqueProjectName,
string pszHelpKeyword
)
int LogError(
unsigned int ErrorType,
String^ pszMessage,
String^ pszFile,
int nLine,
int nColumn,
String^ pszErrorCode,
String^ pszTaskListMessage,
String^ pszUniqueProjectName,
String^ pszHelpKeyword
)
abstract LogError :
ErrorType:uint32 *
pszMessage:string *
pszFile:string *
nLine:int *
nColumn:int *
pszErrorCode:string *
pszTaskListMessage:string *
pszUniqueProjectName:string *
pszHelpKeyword:string -> int
function LogError(
ErrorType : uint,
pszMessage : String,
pszFile : String,
nLine : int,
nColumn : int,
pszErrorCode : String,
pszTaskListMessage : String,
pszUniqueProjectName : String,
pszHelpKeyword : String
) : int
Parameters
ErrorType
Type: System.UInt32The error type (from __VsErrorType).
pszMessage
Type: System.StringThe error message.
pszFile
Type: System.StringThe name of the project file that failed to load.
nLine
Type: System.Int32The line number of the project file that caused the error.
nColumn
Type: System.Int32The column number of the line in the project file that caused the error.
pszErrorCode
Type: System.StringThe error code.
pszTaskListMessage
Type: System.StringThe message to add to the task list.
pszUniqueProjectName
Type: System.StringThe unique project name.
pszHelpKeyword
Type: System.StringThe help keyword.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.