The JSON response. The HTTP response will be cleared and this JSON string will be written to the response. If the extension DOES NOT want this value written to a cleared response object, set the ExtResults.HandledByExt or ExtResults.ContinueNoExec result in the event args. Note that a cancel result will also prevent the HTTP response from being modified.


Namespace: NetQuarry
Assembly: EAP.Core (in EAP.Core.dll)

Syntax

Visual Basic (Declaration)
Public Property JsonResponse As String
    <CompilerGenerated> Get
    <CompilerGenerated> Set
End Property
C#
public string JsonResponse { [CompilerGenerated] get; [CompilerGenerated] set; }
C++
public property string JsonResponse sealed  {
    String get();
    void set(String value);
}
J#
/** property */
public string get_JsonResponse();

/** property */
public void set_JsonResponse(string value);
JScript
public CompilerGenerated function get JsonResponse() : String

public CompilerGenerated function set JsonResponse(value : String);

See Also