Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

ISerializableObjectLayerService.CreateObjectType(String, String) Method

When implemented by a class, executes an object layer’s ISerializableObjectLayer.CreateObjectType method implementation and returns the operation result.

Namespace: DevExpress.Xpo.DB

Assembly: DevExpress.Xpo.v19.2.dll

Declaration

[OperationContract(Action = "http://tempuri.org/ISerializableObjectLayerService/CreateObjectType")]
[XmlSerializerFormat]
OperationResult<object> CreateObjectType(
    string assemblyName,
    string typeName
)

Parameters

Name Type Description
assemblyName String

A String value which specifies the assembly name to be assigned to the XPObjectType.AssemblyName property.

typeName String

A String value which specifies the type name to be assigned to the XPObjectType.TypeName property.

Returns

Type Description
OperationResult<Object>

An OperationResult<Object> object denoting the operation result.

See Also