| Visual Basic (Declaration) | |
|---|---|
<CompilerGeneratedAttribute()> Public Property DataSetImageCopy As Boolean | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
| C# | |
|---|---|
[CompilerGeneratedAttribute()] public bool DataSetImageCopy {get; set;} | |
| C++/CLI | |
|---|---|
[CompilerGeneratedAttribute()] public: property bool DataSetImageCopy { bool get(); void set (bool value); } | |
Return Value
iftrue copy the pixel data when doing a dataset copy; otherwise, false.
Some of the methods that are part of the INotifyReceiveMessage and
INotifySendMessage interfaces require a dataset. The server makes a copy of the dataset
and passes it to the notification implemntors. If you receive large images on your server copying the image data will
have a negative impact on the performance of the server. This option should be false under normal conditions. Setting this option
to false will copy all tags except pixel data.
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
Copy Code