Share via


QueryAttribute.HasSideEffects Property

[WCF RIA Services Version 1 Service Pack 2 is compatible with either .NET framework 4 or .NET Framework 4.5, and with either Silverlight 4 or Silverlight 5.]

Gets or sets a value that indicates whether the query method has side effects.

Namespace:  System.ServiceModel.DomainServices.Server
Assembly:  System.ServiceModel.DomainServices.Server (in System.ServiceModel.DomainServices.Server.dll)

Syntax

'Declaration
Public Property HasSideEffects As Boolean
    Get
    Set
'Usage
Dim instance As QueryAttribute
Dim value As Boolean

value = instance.HasSideEffects

instance.HasSideEffects = value
public bool HasSideEffects { get; set; }
public:
property bool HasSideEffects {
    bool get ();
    void set (bool value);
}
member HasSideEffects : bool with get, set
function get HasSideEffects () : boolean
function set HasSideEffects (value : boolean)

Property Value

Type: System.Boolean
true if the query method has side effects; otherwise, false.

Remarks

Queries with side effects may be invoked in different ways by consumers of a DomainService. For example, clients that invoke a DomainService over HTTP may use POST requests for queries with side effects, whereas GET may be used otherwise.

See Also

Reference

QueryAttribute Class

System.ServiceModel.DomainServices.Server Namespace