Skip to main content
A newer version of this page is available. .

SerializableObjectLayerService(ISerializableObjectLayer) Constructor

Initializes a new instance of the SerializableObjectLayerService class with a specified serializable object layer.

Namespace: DevExpress.Xpo.DB

Assembly: DevExpress.Xpo.v19.2.dll

Declaration

public SerializableObjectLayerService(
    ISerializableObjectLayer serializableObjectLayer
)

Parameters

Name Type Description
serializableObjectLayer ISerializableObjectLayer

An object implementing the ISerializableObjectLayer interface. The specified object is exposed via the SerializableObjectLayerService.SerializableObjectLayer property.

Remarks

Normally, you need to pass a SerializableObjectLayerProxyBase instance, which returns a SerializableObjectLayer instance via the SerializableObjectLayerService.GetObjectLayer method implementation, as the serializableObjectLayer parameter.

See Also