コード例 #1
0
 public NngPipe(nng_pipe pipe)
 {
     NativeNngStruct = pipe;
 }
コード例 #2
0
 public Pipe(nng_pipe pipe)
 {
     NngPipe = pipe;
 }
コード例 #3
0
ファイル: Msg.cs プロジェクト: kevinpeizner/nng.NETCore
 public static extern int nng_pipe_getopt_size(nng_pipe pipe, string opt, out UIntPtr val);
コード例 #4
0
ファイル: Msg.cs プロジェクト: kevinpeizner/nng.NETCore
 public static extern int nng_pipe_getopt_uint64(nng_pipe pipe, string opt, out UInt64 val);
コード例 #5
0
ファイル: Msg.cs プロジェクト: kevinpeizner/nng.NETCore
 public static extern int nng_pipe_getopt_ms(nng_pipe pipe, string opt, out nng_duration val);
コード例 #6
0
ファイル: Msg.cs プロジェクト: kevinpeizner/nng.NETCore
 public static extern int nng_pipe_getopt_ptr(nng_pipe pipe, string opt, out IntPtr val);
コード例 #7
0
ファイル: Msg.cs プロジェクト: kevinpeizner/nng.NETCore
 public static extern int nng_pipe_getopt_bool(nng_pipe pipe, string opt, out bool val);
コード例 #8
0
ファイル: Msg.cs プロジェクト: kevinpeizner/nng.NETCore
 public static extern int nng_pipe_getopt_int(nng_pipe pipe, string opt, out int val);
コード例 #9
0
ファイル: Msg.cs プロジェクト: kevinpeizner/nng.NETCore
 public static extern nng_dialer   nng_pipe_dialer(nng_pipe pipe);
コード例 #10
0
ファイル: Msg.cs プロジェクト: kevinpeizner/nng.NETCore
 public static extern nng_listener nng_pipe_listener(nng_pipe pipe);
コード例 #11
0
ファイル: Msg.cs プロジェクト: kevinpeizner/nng.NETCore
 public static extern nng_socket   nng_pipe_socket(nng_pipe pipe);
コード例 #12
0
ファイル: Msg.cs プロジェクト: kevinpeizner/nng.NETCore
 public static extern int nng_pipe_id(nng_pipe pipe);
コード例 #13
0
ファイル: Msg.cs プロジェクト: kevinpeizner/nng.NETCore
 public static extern int          nng_pipe_close(nng_pipe pipe);
コード例 #14
0
ファイル: Msg.cs プロジェクト: kevinpeizner/nng.NETCore
 public static extern void nng_msg_set_pipe(nng_msg message, nng_pipe pipe);
コード例 #15
0
ファイル: Msg.cs プロジェクト: awesomedotnetcore/nng.NETCore
 public static extern int nng_pipe_getopt_string(nng_pipe pipe, string opt, out string val);