Поделиться через


IStylusSyncPlugin.Error - метод

Обновлен: Ноябрь 2007

Notifies the implementing object that this plug-in or one of the previous ones in the StylusSyncPluginCollection collection threw an exception.

Пространство имен:  Microsoft.StylusInput
Сборка:  Microsoft.Ink (в Microsoft.Ink.dll)

Синтаксис

'Декларация
Sub Error ( _
    sender As RealTimeStylus, _
    data As ErrorData _
)
'Применение
Dim instance As IStylusSyncPlugin
Dim sender As RealTimeStylus
Dim data As ErrorData

instance.Error(sender, data)
void Error(
    RealTimeStylus sender,
    ErrorData data
)
void Error(
    RealTimeStylus^ sender, 
    ErrorData^ data
)
void Error(
    RealTimeStylus sender,
    ErrorData data
)
function Error(
    sender : RealTimeStylus, 
    data : ErrorData
)

Параметры

Заметки

ms585069.alert_note(ru-ru,VS.90).gifПримечание.

Error is a keyword in Microsoft Visual Basic .NET. When implementing an Error method in Visual Basic .NET, you must enclose the word "Error" in square brackets, as shown in the following example.

Public Sub [Error](ByVal sender As Microsoft.StylusInput.RealTimeStylus, _
                   ByVal data As Microsoft.StylusInput.PluginData.ErrorData) _
    Implements Microsoft.StylusInput.IStylusSyncPlugin.Error

Примеры

This C# example is excerpted from the RealTimeStylus Plug-in Sample. The example alerts the developer to any error that is received, displaying the DataId and InnerException properties.

public void Error(RealTimeStylus sender, ErrorData data)
{
  Debug.Assert(false, "Error", "An error occurred.  DataId=" + data.DataId + ", " + "Exception=" + data.InnerException);
}

This Microsoft Visual Basic .NET example is excerpted from the RealTimeStylus Plug-in Sample. The example alerts the developer to any error that is received, displaying the DataId and InnerException properties.

Public Sub [Error](ByVal sender As RealTimeStylus, ByVal data As ErrorData) _
  Implements IStylusSyncPlugin.Error
      Debug.Assert(False, "Error", "An error occurred.  DataId=" & _
                         data.DataId.ToString() & ", Exception=" & _
                         data.InnerException.ToString())
End Sub 'Error

Платформы

Windows Vista, Windows XP с пакетом обновления 2 (SP2), Windows Server 2003

Среды .NET Framework и .NET Compact Framework поддерживают не все версии каждой платформы. Поддерживаемые версии перечислены в разделе Требования к системе для .NET Framework.

Сведения о версии

.NET Framework

Поддерживается в версии: 3.0

См. также

Ссылки

IStylusSyncPlugin Интерфейс

IStylusSyncPlugin - члены

Microsoft.StylusInput - пространство имен

Другие ресурсы

Error Handling Considerations for the StylusInput APIs