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 message to the SharePoint Tools Output window and Error List depending on the specified LogCategory.
Namespace: Microsoft.VisualStudio.SharePoint
Assembly: Microsoft.VisualStudio.SharePoint (in Microsoft.VisualStudio.SharePoint.dll)
Syntax
'Declaration
Sub WriteLine ( _
message As String, _
category As LogCategory, _
filePath As String, _
lineNumber As Integer, _
columnNumber As Integer, _
helpKeyword As String _
)
void WriteLine(
string message,
LogCategory category,
string filePath,
int lineNumber,
int columnNumber,
string helpKeyword
)
Parameters
message
Type: StringThe message text.
category
Type: Microsoft.VisualStudio.SharePoint.LogCategoryThe message log category, specified by LogCategory.
filePath
Type: StringThe full path to the file with the error.
lineNumber
Type: Int32The line number where the error occurred.
columnNumber
Type: Int32The column number where the error occurred.
helpKeyword
Type: StringThe Help keyword for the error.
Remarks
When Visual Studio writes to the IDE, such as the Error window, then the lineNumber and columnNumber values are zero-based, but when user code writes to the IDE, then the values are one-based. This means that if, for example, you specify a lineNumber of 10 and a columnNumber of 20 in your code, Visual Studio reports it as line 11 and column 21.
.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.