IVsaError - интерфейс
Примечание. Данный API устарел.
Предоставляет доступ к ошибкам компиляции, возникшим во время выполнения метода IVsaEngine.Compile Method.
Пространство имен: Microsoft.Vsa
Сборка: Microsoft.Vsa (в Microsoft.Vsa.dll)
Синтаксис
'Декларация
<ObsoleteAttribute("Use of this type is not recommended because it is being deprecated in Visual Studio 2005; there will be no replacement for this feature. Please see the ICodeCompiler documentation for additional help.")> _
<InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)> _
<GuidAttribute("E0C0FFE4-7eea-4ee2-b7e4-0080c7eb0b74")> _
Public Interface IVsaError
[ObsoleteAttribute("Use of this type is not recommended because it is being deprecated in Visual Studio 2005; there will be no replacement for this feature. Please see the ICodeCompiler documentation for additional help.")]
[InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)]
[GuidAttribute("E0C0FFE4-7eea-4ee2-b7e4-0080c7eb0b74")]
public interface IVsaError
[ObsoleteAttribute(L"Use of this type is not recommended because it is being deprecated in Visual Studio 2005; there will be no replacement for this feature. Please see the ICodeCompiler documentation for additional help.")]
[InterfaceTypeAttribute(ComInterfaceType::InterfaceIsIUnknown)]
[GuidAttribute(L"E0C0FFE4-7eea-4ee2-b7e4-0080c7eb0b74")]
public interface class IVsaError
[<ObsoleteAttribute("Use of this type is not recommended because it is being deprecated in Visual Studio 2005; there will be no replacement for this feature. Please see the ICodeCompiler documentation for additional help.")>]
[<InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)>]
[<GuidAttribute("E0C0FFE4-7eea-4ee2-b7e4-0080c7eb0b74")>]
type IVsaError = interface end
public interface IVsaError
Тип IVsaError предоставляет следующие члены.
Свойства
Имя | Описание | |
---|---|---|
Description | Возвращает краткое описание ошибки, а в некоторых случаях также ссылку на лексему в исходном коде, которая вызывает ошибку. | |
EndColumn | Возвращает (при доступности) номер последнего столбца исходного текста, который вызвал ошибку. | |
Line | Возвращает номер строки, в которой произошла ошибка. | |
LineText | Возвращает текст исходного кода из строки, вызвавшей ошибку. | |
Number | Возвращает код, который уникально идентифицирует ошибку. | |
Severity | Задает серьезность ошибки. | |
SourceItem | Возвращает ссылку на объект IVsaItem, создавший ошибку. | |
SourceMoniker | Возвращает полное имя исходного элемента, содержащего ошибку, в формате, распознаваемом обработчиком скриптов. | |
StartColumn | Возвращает (при доступности) номер первого столбца исходного текста, который вызвал ошибку. |
В начало страницы