Table of Contents

Class DocumentHandlerDef

Namespace
Tripous.Data
Assembly
Tripous.Data.dll

A document handler definition.

NOTE: There is an one-to-one relationship between document handlers and document modules, based on their names.

That is, if there is a document module name SalesOrders there must be a document handler with the same name.

public class DocumentHandlerDef : BaseDef, IDef, IJsonLoadable, INotifyPropertyChanged
Inheritance
DocumentHandlerDef
Implements
Inherited Members
Extension Methods

Constructors

DocumentHandlerDef()

Constructor

public DocumentHandlerDef()

Properties

ClassName

The class name of the Type this descriptor describes.

NOTE: The value of this property may be a string returned by the AssemblyQualifiedName property of the type.

In that case, it consists of the type name, including its namespace, followed by a comma, followed by the display name of the assembly the type belongs to. It might looks like the following

Tripous.Data.DataModule, Tripous, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null

Otherwise it can be a full type name FullName, e.g.

Tripous.Data.DataModule

public string ClassName { get; set; }

Property Value

string