Dieser Browser wird nicht mehr unterstützt.
Führen Sie ein Upgrade auf Microsoft Edge durch, um die neuesten Features, Sicherheitsupdates und den technischen Support zu nutzen.
Microsoft Edge herunterladen
Weitere Informationen zu Internet Explorer und Microsoft Edge
public:
property bool UseHttpGet { bool get(); void set(bool value); };
public bool UseHttpGet { get; set; }
member this.UseHttpGet : bool with get, set
Public Property UseHttpGet As Boolean
Property Value
Examples
The following example shows how to apply
ScriptMethodAttribute
to a Web method with the
UseHttpGet
property set to
true
. This code example is part of a larger example provided for the
ScriptMethodAttribute
class.
Remarks
You cannot override this property from ECMAScript (JavaScript) on the client. If this property is set to
true
, invoking the method from script will always use HTTP GET.
When this property is set to
true
, the client proxy code uses HTTP GET to call the Web service. Each input parameter for the method appears as a query parameter in the URL that is used to invoke the Web method. The parameter value is obtained through JavaScript Object Notation (JSON) serialization and URL encoding of the parameter value.
The use of HTTP GET for invoking the Web service method follows the same guidelines for any other Web interaction. HTTP GET should be used only for operations where no sensitive data is exposed and when the server action does not have side effects.
Important
Setting the
UseHttpGet
property to
true
might pose a security risk for your application if you are working with sensitive data or transactions. In GET requests, the message is encoded by the browser into the URL and is therefore an easier target for tampering.