.NET Framework Class Library
DataServiceContext..::.WritingEntity Event

Occurs after an entity has been fully serialized into XML in a request message.

Namespace:  System.Data.Services.Client
Assembly:  System.Data.Services.Client (in System.Data.Services.Client.dll)
Syntax

Visual Basic (Declaration)
Public Event WritingEntity As EventHandler(Of ReadingWritingEntityEventArgs)
Visual Basic (Usage)
Dim instance As DataServiceContext
Dim handler As EventHandler(Of ReadingWritingEntityEventArgs)

AddHandler instance.WritingEntity, handler
C#
public event EventHandler<ReadingWritingEntityEventArgs> WritingEntity
Visual C++
public:
 event EventHandler<ReadingWritingEntityEventArgs^>^ WritingEntity {
    void add (EventHandler<ReadingWritingEntityEventArgs^>^ value);
    void remove (EventHandler<ReadingWritingEntityEventArgs^>^ value);
}
JScript
JScript does not support events.
Remarks

Handling the WritingEntity event enables you to change the XML in a request before it is sent.

The WritingEntity event may occur on a different thread when you call BeginSaveChanges(SaveChangesOptions, AsyncCallback, Object) without including Batch in the supplied SaveChangesOptions value.

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5 SP1
See Also

Reference

Tags :


Page view tracker