ParseDynamicValue.Json Property

 

Gets or sets the JSON string to parse.

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

Syntax

[RequiredArgumentAttribute]
[DefaultValueAttribute(null)]
public InArgument<string> Json {
    [CompilerGeneratedAttribute]
    get;
    [CompilerGeneratedAttribute]
    set;
}
public:
[RequiredArgumentAttribute]
[DefaultValueAttribute(null)]
property InArgument<String^>^ Json {
    [CompilerGeneratedAttribute]
    InArgument<String^>^ get();
    [CompilerGeneratedAttribute]
    void set(InArgument<String^>^ value);
}
[<RequiredArgumentAttribute>]
[<DefaultValueAttribute(null)>]
member Json : InArgument<string> with get, set
<RequiredArgumentAttribute>
<DefaultValueAttribute(Nothing)>
Public Property Json As InArgument(Of String)

Property Value

Type: System.Activities.InArgument<String>

The JSON string to parse.

See Also

ParseDynamicValue Class
Microsoft.Activities Namespace

Return to top