VintaSoft Imaging .NET SDK 14.0: Documentation for .NET developer
Vintasoft.Imaging.Pdf.Tree.InteractiveForms Namespace / PdfSubmitFormAction Class / IsUseGetMethod Property
Syntax Remarks Requirements SeeAlso
In This Topic
    IsUseGetMethod Property (PdfSubmitFormAction)
    In This Topic
    Gets or sets a value indicating whether fields are submitted using an HTTP GET request.
    Syntax
    'Declaration
    
    Public Property IsUseGetMethod As Boolean
    
    
    public bool IsUseGetMethod { get; set; }
    
    
    public: __property bool get_IsUseGetMethod();
    public: __property void set_IsUseGetMethod(
    bool value
    );
    public:
    property bool IsUseGetMethod { bool get(); void set(bool value); }

    Property Value

    true - field names and values must be submitted using an HTTP GET request; false - field names and values must be submitted using an HTTP POST request.
    Remarks

    This property is meaningful only when the SubmitFormat property is set to PdfInteractiveFormFieldSubmitFormat.HTML.

    Requirements

    Target Platforms: .NET9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also