Share via


SetCachedValue<T> Constructor

 

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

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

Overload List

Name Description
System_CAPS_pubmethod SetCachedValue<T>()

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

System_CAPS_pubmethod SetCachedValue<T>(InArgument<String>, InArgument<T>)

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

System_CAPS_pubmethod SetCachedValue<T>(InArgument<String>, InArgument<T>, InArgument<Boolean>)

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

See Also

SetCachedValue<T> Class
Microsoft.Activities Namespace

Return to top

SetCachedValue<T> Constructor ()

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

Syntax

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

Return to top

SetCachedValue<T> Constructor (InArgument<String>, InArgument<T>)

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

Syntax

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

Parameters

Return to top

SetCachedValue<T> Constructor (InArgument<String>, InArgument<T>, InArgument<Boolean>)

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

Syntax

public SetCachedValue(
    InArgument<string> name,
    InArgument<T> value,
    InArgument<bool> persisted
)
public:
SetCachedValue(
    InArgument<String^>^ name,
    InArgument<T>^ value,
    InArgument<bool>^ persisted
)
new : 
        name:InArgument<string> *
        value:InArgument<'T> *
        persisted:InArgument<bool> -> SetCachedValue
Public Sub New (
    name As InArgument(Of String),
    value As InArgument(Of T),
    persisted As InArgument(Of Boolean)
)

Parameters

Return to top