1
0
mirror of https://github.com/1C-Company/v8-code-style.git synced 2025-01-08 09:14:55 +02:00
v8-code-style/bundles/com.e1c.v8codestyle.bsl/markdown/data-exchange-load.md

376 B

Check DataExchange.Load in event handler

Mandatory checking of DataExchange.Load is absent in event handler

Noncompliant Code Example

Procedure BeforeWrite(Cancel)
// handler code
// ...
EndProcedure

Compliant Solution

Procedure BeforeWrite(Cancel)
If DataExchange.Load Then
     Return;
EndIf;

// handler code
// ...
EndProcedure

See