DBCommAgent.NET 1.0.3

dotnet add package DBCommAgent.NET --version 1.0.3
NuGet\Install-Package DBCommAgent.NET -Version 1.0.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DBCommAgent.NET" Version="1.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DBCommAgent.NET --version 1.0.3
#r "nuget: DBCommAgent.NET, 1.0.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install DBCommAgent.NET as a Cake Addin
#addin nuget:?package=DBCommAgent.NET&version=1.0.3

// Install DBCommAgent.NET as a Cake Tool
#tool nuget:?package=DBCommAgent.NET&version=1.0.3

NuGet version DBCommAgent.NET (DB금융투자 국내-주식/파생)

  • DB금융투자 국내-주식/파생 OpenApi C# wrapper class
  • 개발환경: Visual Studio 2022, netstandard2.0

using DBCommAgent.NET;
...
    // 메인 윈도우 클래스 멤버로 선언
    private readonly AxDBCommAgent api;

    public ctor()
    {
        // nint Handle = new WindowInteropHelper(Application.Current.MainWindow).EnsureHandle(); // WPF 에서만 필요
        api = new (Handle);

        // 이벤트 핸들러 등록
        api.OnAgentEventHandler += Api_OnAgentEventHandler;
        ...

    }

    private void login()
    {
        if (!api.Created)
        {
            OutLog("OpenApi 미설치");
            return;
        }

        if (api.GetLoginState() == 1)
        {
            OutLog("이미 로그인 되어 있습니다.");
            return;
        }

        int ret = api.CommInit();
        OutLog($"returned CommInit: {ret}");
        ret = api.CommLogin(textBox_userId.Text, textBox_password.Text, textBox_certPwd.Text);
        OutLog($"returned CommLogin: {ret}");
    }

    private void Api_OnAgentEventHandler(object sender, _DDBCommAgentEvents_OnAgentEventHandlerEvent e)
    {
        ...
    }


using DBCommAgent.NET;

namespace ConsoleApp;

class Program
{
    [STAThread]
    static void Main(string[] args)
    {
        new Sample().Run();
        NativeLoop.LoopForever(); // if need for break, press CTRL+C
    }
}

class Sample
{
    readonly AxDBCommAgent api = new();
    public void Run()
    {
        if (!api.Created)
        {
            Console.WriteLine("OpenApi 미설치");
            return;
        }

        api.OnAgentEventHandler += Api_OnAgentEventHandler;

        // 통신 초기화
        if (0 > api.CommInit())
        {
            Console.WriteLine("통신초기화(CommInit): 실패");
            return;
        }

        Console.WriteLine("로그인 요청...");
        if (1 != api.CommLogin(Secret.유저아이디, Secret.비번, Secret.공인비번))
        {
            Console.WriteLine("로그인(CommLogin): 실패");
            return;
        }

        // 로그인 상태 확인
        Console.WriteLine($"GetLoginState: {api.GetLoginState()}");
        Console.WriteLine($"GetApiAgentModulePath: {api.GetApiAgentModulePath()}");

        // 작업 추가...
    }

    private void Api_OnAgentEventHandler(object sender, _DDBCommAgentEvents_OnAgentEventHandlerEvent e)
    {
        Console.WriteLine($"OnAgentEventHandler: nEventType={e.nEventType}, nParam={e.nParam}, strParam={e.strParam}");
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.3 108 2/21/2024
1.0.2 102 2/18/2024
1.0.0 101 2/15/2024