コード例 #1
0
ファイル: PlatformInvocationLinux.cs プロジェクト: cj525/grpc
 int IPlatformInvocation.grpcsharp_server_add_secure_http2_port(ServerSafeHandle server, string addr,
     ServerCredentialsSafeHandle creds)
 {
     return grpcsharp_server_add_secure_http2_port(server, addr, creds);
 }
コード例 #2
0
 int IPlatformInvocation.grpcsharp_server_add_secure_http2_port(ServerSafeHandle server, string addr,
                                                                ServerCredentialsSafeHandle creds)
 {
     return(grpcsharp_server_add_secure_http2_port(server, addr, creds));
 }
コード例 #3
0
ファイル: PlatformInvocationLinux.cs プロジェクト: cj525/grpc
 static extern int grpcsharp_server_add_secure_http2_port(ServerSafeHandle server, string addr, ServerCredentialsSafeHandle creds);
コード例 #4
0
 static extern int grpcsharp_server_add_secure_http2_port(ServerSafeHandle server, string addr, ServerCredentialsSafeHandle creds);
コード例 #5
0
ファイル: ServerSafeHandle.cs プロジェクト: mway08/grpc
 public int AddListeningPort(string addr, ServerCredentialsSafeHandle credentials)
 {
     return grpcsharp_server_add_secure_http2_port(this, addr, credentials);
 }
コード例 #6
0
ファイル: ServerSafeHandle.cs プロジェクト: sidrakesh93/grpc
 public int AddListeningPort(string addr, ServerCredentialsSafeHandle credentials)
 {
     return(grpcsharp_server_add_secure_http2_port(this, addr, credentials));
 }
コード例 #7
0
 public int AddSecurePort(string addr, ServerCredentialsSafeHandle credentials)
 {
     return(pinvoke.grpcsharp_server_add_secure_http2_port(this, addr, credentials));
 }
コード例 #8
0
ファイル: ServerSafeHandle.cs プロジェクト: rwightman/grpc
 public int AddSecurePort(string addr, ServerCredentialsSafeHandle credentials)
 {
     return Native.grpcsharp_server_add_secure_http2_port(this, addr, credentials);
 }