Share via


TryGetCachedValue<T> Constructor

 

Initializes a new instance of the TryGetCachedValue<T> class.

Namespace:   Microsoft.Activities
Assembly:  Microsoft.Activities (in Microsoft.Activities.dll)

Overload List

Name Description
System_CAPS_pubmethod TryGetCachedValue<T>()

Initializes a new instance of the TryGetCachedValue<T> class.

System_CAPS_pubmethod TryGetCachedValue<T>(InArgument<String>, OutArgument<T>)

Initializes a new instance of the TryGetCachedValue<T> class with the specified values.

See Also

TryGetCachedValue<T> Class
Microsoft.Activities Namespace

Return to top

TryGetCachedValue<T> Constructor ()

Initializes a new instance of the TryGetCachedValue<T> class.

Syntax

public TryGetCachedValue()
public:
TryGetCachedValue()
new : unit -> TryGetCachedValue
Public Sub New

Return to top

TryGetCachedValue<T> Constructor (InArgument<String>, OutArgument<T>)

Initializes a new instance of the TryGetCachedValue<T> class with the specified values.

Syntax

public TryGetCachedValue(
    InArgument<string> name,
    OutArgument<T> value
)
public:
TryGetCachedValue(
    InArgument<String^>^ name,
    OutArgument<T>^ value
)
new : 
        name:InArgument<string> *
        value:OutArgument<'T> -> TryGetCachedValue
Public Sub New (
    name As InArgument(Of String),
    value As OutArgument(Of T)
)

Parameters

Return to top