Barcode Xpress for .NET Framework v13.9 - Updated
DebugErrorLevel Property
Example 




Accusoft.BarcodeXpressSdk Namespace > BarcodeXpress Class : DebugErrorLevel Property
Gets and sets the error level of items that the component should write to the debug log file.
Syntax
'Declaration
 
<BrowsableAttribute(False)>
<DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)>
Public Property DebugErrorLevel As ErrorLevelInfo
'Usage
 
Dim instance As BarcodeXpress
Dim value As ErrorLevelInfo
 
instance.DebugErrorLevel = value
 
value = instance.DebugErrorLevel
[Browsable(false)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public ErrorLevelInfo DebugErrorLevel {get; set;}
[Browsable(false)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public: __property ErrorLevelInfo get_DebugErrorLevel();
public: __property void set_DebugErrorLevel( 
   ErrorLevelInfo value
);
[Browsable(false)]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public:
property ErrorLevelInfo DebugErrorLevel {
   ErrorLevelInfo get();
   void set (    ErrorLevelInfo value);
}

Property Value

The ErrorLevel enumeration value set.
Remarks

This property allows you to control the amount of information that the component places into the DebugLogFile. Since it is expensive to generate and write debug log items, set this property to write the least amount of information that you will find useful.

Valid values: Production, Development and Detailed.

Default value: Production

Note: This property will have no effect if the Debug property is set to false.

Example
...
// Set the ErrorLevel of the debugging to Development
bcXpress.ErrorLevel = Accusoft.BarcodeXpressSdk.ErrorLevel.Development;
...
See Also

Reference

BarcodeXpress Class
BarcodeXpress Members

Is this page helpful?
Yes No
Thanks for your feedback.