EntityQuery.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 a value indicating whether the query has side-effects.

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

Syntax

'Declaration
Public ReadOnly Property HasSideEffects As Boolean
    Get
'Usage
Dim instance As EntityQuery
Dim value As Boolean

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

Property Value

Type: System.Boolean
true if the query 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

EntityQuery Class

System.ServiceModel.DomainServices.Client Namespace