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 Addition Operator

Adds two instances of SQLBinary together.

[C#]
public static SQLBinary operator +(
   SQLBinary x,
   SQLBinary y
);
[C++]
public: static SQLBinary* operator op_Addition(
   SQLBinary* x,
   SQLBinary* y
);
[JScript]
returnValue = x + y;

[Visual Basic] In Visual Basic, you cannot use the operators defined by a type, nor override them or define your own.

[JScript] In JScript, you can use the operators defined by a type, but you cannot override them or define your own.

Arguments [JScript]

x
A SQLBinary.
y
A SQLBinary.

Parameters [C#, C++]

x
A SQLBinary.
y
A SQLBinary.

Return Value [C#, C++, JScript]

A new SQLBinary. If either arguement is Null, the new Value will be Null.

Remarks [C#, C++, JScript]

will appear first in the resulting SQLBinary, followed by.

See Also

SQLBinary Class | SQLBinary Members | System.Data.SQLTypes Namespace