Click or drag to resize

GeneralModuleName Method

Return full path name of core CryptoSys PKI DLL module.

Namespace: CryptoSysPKI
Assembly: diCrSysPKINet (in diCrSysPKINet.dll) Version: 23.0.0.25611 (23.0.0.0)
Syntax
public static string ModuleName()

Return Value

String
File name.
Remarks
If using the Win32 DLL in the system folder on a 64-bit system, Windows will return "C:\WINDOWS\SYSTEM32\diCrPKI.dll" when the DLL file path is actually "C:\WINDOWS\SYSWOW64\diCrPKI.dll". Use General.Platform() to find out exactly which DLL is being used.
Example
C#
string s = CryptoSysPKI.General.ModuleName();
Console.WriteLine("ModuleName={0}", s);
See Also