Class WsEntityObject

Inheritance
System.Object
WsEntityObject
Implements
System.Xml.Serialization.IXmlSerializable
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Mediachase.BusinessFoundation.Data.WebServices
Assembly: Mediachase.BusinessFoundation.Data.dll
Version: 10.8.0
Syntax
public sealed class WsEntityObject : IXmlSerializable

Constructors

WsEntityObject()

Initializes a new instance of the WsEntityObject class.

Declaration
public WsEntityObject()

WsEntityObject(EntityObject)

Initializes a new instance of the WsEntityObject class.

Declaration
public WsEntityObject(EntityObject innerEntityObject)
Parameters
Type Name Description
EntityObject innerEntityObject

The inner entity object.

Properties

InnerEntityObject

Gets or sets the inner entity object.

Declaration
public EntityObject InnerEntityObject { get; set; }
Property Value
Type Description
EntityObject

The inner entity object.

RenderDynamicEntity

Gets or sets a value indicating whether [render dynamic entity].

Declaration
public bool RenderDynamicEntity { get; set; }
Property Value
Type Description
System.Boolean

true if [render dynamic entity]; otherwise, false.

Methods

ConvertToEntity(WsEntityObject)

Converts to entity.

Declaration
public static EntityObject ConvertToEntity(WsEntityObject target)
Parameters
Type Name Description
WsEntityObject target

The target.

Returns
Type Description
EntityObject

Create(EntityObject)

Creates the specified ret val object.

Declaration
public static WsEntityObject Create(EntityObject retValObject)
Parameters
Type Name Description
EntityObject retValObject

The ret val object.

Returns
Type Description
WsEntityObject

Create(EntityObject, Boolean)

Creates the specified ret val object.

Declaration
public static WsEntityObject Create(EntityObject retValObject, bool renderDynamicEntity)
Parameters
Type Name Description
EntityObject retValObject

The ret val object.

System.Boolean renderDynamicEntity

if set to true [render dynamic entity].

Returns
Type Description
WsEntityObject

GetSchema()

This property is reserved, apply the System.Xml.Serialization.XmlSchemaProviderAttribute to the class instead.

Declaration
public XmlSchema GetSchema()
Returns
Type Description
System.Xml.Schema.XmlSchema

An System.Xml.Schema.XmlSchema that describes the XML representation of the object that is produced by the System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter) method and consumed by the System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader) method.

ReadXml(XmlReader)

Generates an object from its XML representation.

Declaration
public void ReadXml(XmlReader reader)
Parameters
Type Name Description
System.Xml.XmlReader reader

The System.Xml.XmlReader stream from which the object is deserialized.

WriteXml(XmlWriter)

Converts an object into its XML representation.

Declaration
public void WriteXml(XmlWriter writer)
Parameters
Type Name Description
System.Xml.XmlWriter writer

The System.Xml.XmlWriter stream to which the object is serialized.

Implements

System.Xml.Serialization.IXmlSerializable