Discuss this help topic in SecureBlackbox Forum

SetDefaultDCEncoding

Declared in     See also     


Filter: C#  VB.NET  Pascal  C++  Java  


Sets the default encoding.

Declaration

[C#]
    void SetDefaultDCEncoding(TElDCEncoding Value);

[VB.NET]
    Sub SetDefaultDCEncoding(ByVal Value As TElDCEncoding)

[Pascal]
    procedure SetDefaultDCEncoding(Value : TElDCEncoding);

[C++]
    void SetDefaultDCEncoding(TElDCEncodingHandle Value);

[Java]
    void SetDefaultDCEncoding(TElDCEncoding Value);

Parameters

  • Value - encoding to be set as default

Description

    Use this function to specify the desired default encoding. The default encoding is used when NULL/nil/Nothing is passed to methods that require a TElDCEncoding object.
    In .NET and Java editions, it is a good idea to call this function in the beginning of your program.
    In VCL, this function is not needed as the default DC encoding is initialized when CBDCXMLEnc unit is added to "uses".

Declared in

.NET:
  • Namespace: SecureBlackbox
  • Assembly: SecureBlackbox
VCL:
  • Unit: SBDCEnc
Java:
  • Package: SecureBlackbox.Base.jar
C++:
  • sbdcenc.h

See also:     GetDefaultDCEncoding    

Discuss this help topic in SecureBlackbox Forum