ODataWriter.WriteStart Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
WriteStart(ODataResourceSet) |
Starts the writing of a resource set. |
WriteStart(ODataResource) |
Starts the writing of a resource. |
WriteStart(ODataPropertyInfo) |
Writes a primitive property within a resource. |
WriteStart(ODataDeltaResourceSet) |
Starts the writing of a delta resource set. |
WriteStart(ODataDeletedResource) |
Starts writing a deleted resource. |
WriteStart(ODataNestedResourceInfo) |
Starts the writing of a nested resource info. |
WriteStart(ODataResourceSet)
Starts the writing of a resource set.
public abstract void WriteStart (Microsoft.OData.ODataResourceSet resourceSet);
abstract member WriteStart : Microsoft.OData.ODataResourceSet -> unit
Public MustOverride Sub WriteStart (resourceSet As ODataResourceSet)
Parameters
- resourceSet
- ODataResourceSet
The resource set or collection to write.
Applies to
WriteStart(ODataResource)
Starts the writing of a resource.
public abstract void WriteStart (Microsoft.OData.ODataResource resource);
abstract member WriteStart : Microsoft.OData.ODataResource -> unit
Public MustOverride Sub WriteStart (resource As ODataResource)
Parameters
- resource
- ODataResource
The resource or item to write.
Applies to
WriteStart(ODataPropertyInfo)
Writes a primitive property within a resource.
public virtual void WriteStart (Microsoft.OData.ODataPropertyInfo primitiveProperty);
abstract member WriteStart : Microsoft.OData.ODataPropertyInfo -> unit
override this.WriteStart : Microsoft.OData.ODataPropertyInfo -> unit
Public Overridable Sub WriteStart (primitiveProperty As ODataPropertyInfo)
Parameters
- primitiveProperty
- ODataPropertyInfo
The primitive property to write.
Applies to
WriteStart(ODataDeltaResourceSet)
Starts the writing of a delta resource set.
public virtual void WriteStart (Microsoft.OData.ODataDeltaResourceSet deltaResourceSet);
abstract member WriteStart : Microsoft.OData.ODataDeltaResourceSet -> unit
override this.WriteStart : Microsoft.OData.ODataDeltaResourceSet -> unit
Public Overridable Sub WriteStart (deltaResourceSet As ODataDeltaResourceSet)
Parameters
- deltaResourceSet
- ODataDeltaResourceSet
The resource set or collection to write.
Applies to
WriteStart(ODataDeletedResource)
Starts writing a deleted resource.
public virtual void WriteStart (Microsoft.OData.ODataDeletedResource deletedResource);
abstract member WriteStart : Microsoft.OData.ODataDeletedResource -> unit
override this.WriteStart : Microsoft.OData.ODataDeletedResource -> unit
Public Overridable Sub WriteStart (deletedResource As ODataDeletedResource)
Parameters
- deletedResource
- ODataDeletedResource
The deleted resource to write.
Applies to
WriteStart(ODataNestedResourceInfo)
Starts the writing of a nested resource info.
public abstract void WriteStart (Microsoft.OData.ODataNestedResourceInfo nestedResourceInfo);
abstract member WriteStart : Microsoft.OData.ODataNestedResourceInfo -> unit
Public MustOverride Sub WriteStart (nestedResourceInfo As ODataNestedResourceInfo)
Parameters
- nestedResourceInfo
- ODataNestedResourceInfo
The nested resource info to write.