DynamicObject::TryUnaryOperation Method
Provides implementation for unary operations. Classes derived from the DynamicObject class can override this method to specify dynamic behavior for operations such as negation, increment, or decrement.
Assembly: System.Core (in System.Core.dll)
public: virtual bool TryUnaryOperation( UnaryOperationBinder^ binder, [OutAttribute] Object^% result )
Parameters
- binder
- Type: System.Dynamic::UnaryOperationBinder
Provides information about the unary operation. The binder.Operation property returns an ExpressionType object. For example, for the negativeNumber = -number statement, where number is derived from the DynamicObject class, binder.Operation returns "Negate".
- result
- Type: System::Object%
The result of the unary operation.
Return Value
Type: System::Booleantrue if the operation is successful; otherwise, false. If this method returns false, the run-time binder of the language determines the behavior. (In most cases, a language-specific run-time exception is thrown.)
Classes derived from the DynamicObject class can override this method to specify how unary operations should be performed for a dynamic object. When the method is not overridden, the run-time binder of the language determines the behavior. (In most cases, a language-specific run-time exception is thrown.)
This method is called when you have unary operations such as negation, increment, or decrement. For example, if the TryUnaryOperation method is overridden, this method is automatically invoked for statements like negativeNumber = -number, where number is derived from the DynamicObject class.
You can get information about the type of the unary operation by using the Operation property of the binder parameter.
If your dynamic object is used only in C# and Visual Basic, the binder.Operation property can have one of the following values from the ExpressionType enumeration. However, in other languages such as IronPython or IronRuby, you can have other values. For more information about ExpressionType, see documentation on the CodePlex Web site.
Value | Description | C# | Visual Basic |
|---|---|---|---|
Decrement | A unary decrement operation. | a-- | Not supported. |
Increment | A unary increment operation. | a++ | Not supported. |
Negate | An arithmetic negation. | -a | -a |
Not | A logical negation. | !a | Not a |
OnesComplement | A ones complement. | ~a | Not supported. |
IsFalse | A false condition value. | a && b | Not supported. |
IsTrue | A true condition value. | a || b | Not supported. |
UnaryPlus | A unary plus. | +a | +a |
Note |
|---|
To implement OrElse (a || b) and AndAlso (a && b) operations for dynamic objects in C#, you may want to implement both the TryUnaryOperation method and the TryBinaryOperation method. The OrElse operation consists of the unary IsTrue operation and the binary Or operation. The Or operation is performed only if the result of the IsTrue operation is false. The AndAlso operation consists of the unary IsFalse operation and the binary And operation. The And operation is performed only if the result of the IsFalse operation is false. |
Assume that you need a data structure to store textual and numeric representations of numbers, and you want to define a mathematical negation operation for such data.
The following code example demonstrates the DynamicNumber class, which is derived from the DynamicObject class. DynamicNumber overrides the TryUnaryOperation method to enable the mathematical negation operation. Is also overrides the TrySetMember and TryGetMember methods to enable access to the elements.
In this example, only the mathematical negation operation is supported. If you try to write a statement like negativeNumber = +number, a run-time exception occurs.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note