Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 1.67 KB

CommonModuleInvalidType.md

File metadata and controls

21 lines (14 loc) · 1.67 KB

Common module invalid type (CommonModuleInvalidType)

Description

When developing common modules, you should choose one of four code execution contexts:

Common module type Naming example Server call Server External connection Client (Ordinary application) Client (Managed application)
Server-side Common (or CommonServer) + + +
Server-side to call from client CommonServerCall + +
Client-side CommonClient (or CommonGlobal) + +
Client-server CommonClientServer + + + +

Examples

Sources