NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

SQLBinary Constructor (Byte[], Boolean)

Initializes a new instance of the SQLBinary class with a binary object to store, a boolean indicating whether or not to initialize as null, and boolean indicating whether or not to create a new binary array.

[Visual Basic]
Overloads Public Sub New( _
   ByVal value() As Byte, _
   ByVal fNewCopy As Boolean _
)
[C#]
public SQLBinary(
   byte[] value,
   bool fNewCopy
);
[C++]
public: SQLBinary(
   unsigned char* value[],
   bool fNewCopy
);
[JScript]
public function SQLBinary(
   value : Byte[],
   fNewCopy : Boolean
);

Parameters

value
The binary object to be stored or retrieved.
fNewCopy
true if creating a new binary array, otherwise false.

See Also

SQLBinary Class | SQLBinary Members | System.Data.SQLTypes Namespace | SQLBinary Constructor Overload List