Reorg usings.

This commit is contained in:
soukoku
2014-04-17 19:11:11 -04:00
parent b6ee9dfed9
commit 72760ddad2
56 changed files with 46 additions and 129 deletions

View File

@@ -6,16 +6,16 @@ namespace NTwain
/// <summary>
/// Contains event data after whatever data from the source has been transferred.
/// </summary>
public class DataTransferredEventArgs : EventArgs
{
/// <summary>
/// Gets pointer to the complete data if the transfer was native.
/// The data will be freed once the event handler ends
/// so consumers must complete whatever processing before then.
public class DataTransferredEventArgs : EventArgs
{
/// <summary>
/// Gets pointer to the complete data if the transfer was native.
/// The data will be freed once the event handler ends
/// so consumers must complete whatever processing before then.
/// For image type this data is DIB (Windows), PICT (old Mac), and TIFF (Linux/OSX).
/// </summary>
/// <value>The data pointer.</value>
public IntPtr NativeData { get; internal set; }
/// </summary>
/// <value>The data pointer.</value>
public IntPtr NativeData { get; internal set; }
/// <summary>
/// Gets the file path to the complete data if the transfer was file or memory-file.
@@ -50,5 +50,5 @@ namespace NTwain
/// The extended image information.
/// </value>
public TWExtImageInfo ExImageInfo { get; internal set; }
}
}
}