This method is deprecated. Tests a
WriteDataItem event.
Syntax
'Declaration
<ObsoleteAttribute("This method is deprecated. It is not required for testing a WriteDataItem event handler.")>
Public Sub TestWriteDataItemEvent( _
ByVal As String, _
ByVal As String _
)
'Usage
Dim instance As IdentificationProcessor
Dim type As String
Dim content As String
instance.TestWriteDataItemEvent(type, content)
[Obsolete("This method is deprecated. It is not required for testing a WriteDataItem event handler.")]
public void TestWriteDataItemEvent(
string ,
string
)
[Obsolete("This method is deprecated. It is not required for testing a WriteDataItem event handler.")]
public: void TestWriteDataItemEvent(
string* ,
string*
)
[Obsolete("This method is deprecated. It is not required for testing a WriteDataItem event handler.")]
public:
void TestWriteDataItemEvent(
String^ ,
String^
)
Parameters
- type
- The type of the data item. This method will place the type into the DataItemEventArgs object that it sends to the WriteDataItem event handler.
- content
- The content of the data item. This method will place the content into the DataItemEventArgs object that it sends to the WriteDataItem event handler.
See Also