DataCollectionSink Class
Diagnostic data adapters use a DataCollectionSink to store files and XML data for later attachment to bugs and test reports.
Inheritance Hierarchy
System.Object
Microsoft.VisualStudio.TestTools.Execution.DataCollectionSink
Namespace: Microsoft.VisualStudio.TestTools.Execution
Assembly: Microsoft.VisualStudio.QualityTools.ExecutionCommon (in Microsoft.VisualStudio.QualityTools.ExecutionCommon.dll)
Syntax
'Declaration
Public MustInherit Class DataCollectionSink
public abstract class DataCollectionSink
public ref class DataCollectionSink abstract
[<AbstractClass>]
type DataCollectionSink = class end
public abstract class DataCollectionSink
The DataCollectionSink type exposes the following members.
Constructors
Name | Description | |
---|---|---|
DataCollectionSink | Initializes a new instance of the DataCollectionSink class. |
Top
Methods
Name | Description | |
---|---|---|
Equals | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
SendFileAsync(FileTransferInformation) | Sends an intermediate file asynchronously to the DataCollectionSink by using the provided file transfer information object. | |
SendFileAsync(DataCollectionContext, String, Boolean) | Sends a file asynchronously to the DataCollectionSink by using the parameters that are specified for this method. | |
SendFileAsync(DataCollectionContext, String, String, Boolean) | Sends an intermediate file asynchronously to the DataCollectionSink by using the parameters that are specified for this method. | |
SendStreamAsync(StreamTransferInformation) | Sends a stream to the DataCollectionSink by using the parameters that are specified for this method. | |
SendStreamAsync(DataCollectionContext, Stream, String, Boolean) | Sends a stream to the DataCollectionSink by using the parameters that are specified for this method. | |
SendStreamAsync(DataCollectionContext, Stream, String, String, Boolean) | Sends a stream to the DataCollectionSink by using the parameters that are specified for this method. | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Top
Events
Name | Description | |
---|---|---|
SendFileCompleted | Occurs when a file has been sent to the DataCollectionSink. | |
SendStreamCompleted | Occurs when a stream has been sent to the DataCollectionSink. |
Top
Remarks
When your custom diagnostic data adapter is initialized, the testing framework provides a DataCollectionSink object for it to use.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also
Reference
Microsoft.VisualStudio.TestTools.Execution Namespace
Other Resources
Creating a Diagnostic Data Adapter to Collect Custom Data or Affect a Test Machine