CallResult(TResult) Class

Tungsten Suite

CallResultTResult Class

Generic class to be used as a return value. CallResult encapsulates a success/failure, an exception and a return value.

Inheritance Hierarchy
SystemObject  WCallResult
    WCallResultTResult

Namespace:  W
Assembly:  Tungsten.CallResult (in Tungsten.CallResult.dll) Version: 2.0.0
Syntax
C#
public class CallResult<TResult> : CallResult

Type Parameters

TResult
The type to be used for the Result member (the return value of the function)

The CallResultTResult type exposes the following members.

Constructors
  NameDescription
Public methodCallResultTResult
Default constructor
Public methodCallResultTResult(Boolean)
Constructor accepting an initial Success value
Public methodCallResultTResult(Boolean, TResult)
Constructor accepting an initial Success value and an initial Result value
Public methodCallResultTResult(Boolean, TResult, Exception)
Constructor accepting an initial Success value, an initial Result value and an initial Exception value
Top
Properties
  NameDescription
Public propertyStatic memberEmpty
Provides a new instance of an uninitialized CallResult<TResult>
Public propertyException
Provide exception data to the caller if desired
(Inherited from CallResult.)
Public propertyResult
The return value
Public propertySuccess
Set to True if the function succeeds, otherwise False
(Inherited from CallResult.)
Top
Methods
  NameDescription
Public methodAsTuple
Creates a Tuple from the properties
(Inherited from CallResult.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Extension Methods
  NameDescription
Public Extension MethodCode exampleAsTType
Use Generic syntax for the as operator.
(Defined by AsExtensions.)
Public Extension MethodInitializeProperties

Scans the fields and properties of "owner" and sets the member's Owner property to "owner" This method should be called in the constructor of any class which has IOwnedProperty members

(Defined by PropertyHostExtensions.)
Public Extension MethodInLock(Action)Overloaded.
Performs the action in a Monitor lock
(Defined by MonitorExtensions.)
Public Extension MethodInLockTType(FuncTType)Overloaded.
Performs the function in a Monitor lock
(Defined by MonitorExtensions.)
Public Extension MethodInLockAsync(Action)Overloaded.
Asynchronously performs the action in a Monitor lock
(Defined by MonitorExtensions.)
Public Extension MethodInLockAsyncTType(FuncTType)Overloaded.
Asynchronously performs the action in a Monitor lock
(Defined by MonitorExtensions.)
Public Extension MethodIsDirty

Scans the IsDirty value of each field and property of type IProperty

(Defined by PropertyHostExtensions.)
Public Extension MethodLock
Performs a Monitor lock
(Defined by MonitorExtensions.)
Public Extension MethodMarkAsClean

Scans each field and property of type IProperty and sets it's IsDirty flag to false

(Defined by PropertyHostExtensions.)
Public Extension MethodUnlock
Performs a Monitor unlock
(Defined by MonitorExtensions.)
Top
See Also

Reference