aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp
Commit message (Collapse)AuthorAge
* get rid of unneeded dependency on Mono.SecurityGravatar Jan Tattermusch2015-05-07
|
* Split address passed to AddListeningPort into host and portGravatar Jan Tattermusch2015-05-07
|
* added concept of ServerCallContext, that is passed to all server-side handlersGravatar Jan Tattermusch2015-05-07
|
* add a generic constraint for TRequest and TResponse to require a classGravatar Jan Tattermusch2015-05-07
|
* change todo commentGravatar Jan Tattermusch2015-05-07
|
* stylecop fixesGravatar Jan Tattermusch2015-05-04
|
* remove duplicate initializeGravatar Jan Tattermusch2015-05-04
|
* Fixes for C# cancellation supportGravatar Jan Tattermusch2015-05-04
|
* added stats with number of active native calls, useful for debuggingGravatar Jan Tattermusch2015-05-04
|
* fixed some stylecop warningsGravatar Jan Tattermusch2015-05-04
|
* Added basic support for cancellationGravatar Jan Tattermusch2015-05-04
|
* A new version C# API based on async/awaitGravatar Jan Tattermusch2015-05-04
|
* remove unused function from grpc_csharp_extGravatar Jan Tattermusch2015-05-01
|
* Fix assertion for compute_engine_credsGravatar Jan Tattermusch2015-04-27
|
* attempt to support compute_engine_creds interop testGravatar Jan Tattermusch2015-04-27
|
* Make RpcException errors more informativeGravatar Jan Tattermusch2015-04-27
|
* logic for refreshing access tokenGravatar Jan Tattermusch2015-04-27
|
* style fixesGravatar Jan Tattermusch2015-04-27
|
* First attempt to add service account creds interop testGravatar Jan Tattermusch2015-04-27
|
* Added Grpc.Auth projectGravatar Jan Tattermusch2015-04-27
|
* added dependency on Google.Apis.Auth packageGravatar Jan Tattermusch2015-04-27
|
* Merge pull request #1358 from jtattermusch/csharp_server_improvementsGravatar Tim Emiola2015-04-24
|\ | | | | Improving C# server
| * Removing some ugly hacks from C# server and improving the comments a bitGravatar Jan Tattermusch2015-04-23
| |
* | mathserver listens on fixed portGravatar Jan Tattermusch2015-04-22
|/
* enabling creation of nuget package for grpc_csharp_extGravatar Jan Tattermusch2015-04-20
|
* .nupkg files to gitignoreGravatar Jan Tattermusch2015-04-20
|
* Spec for Grpc.Core nuget package that worksGravatar Jan Tattermusch2015-04-20
|
* Grpc.Core managed project now depends on native nuget packages with openssl ↵Gravatar Jan Tattermusch2015-04-20
| | | | and zlib
* changed path to grpc_csharp_ext.dllGravatar Jan Tattermusch2015-04-20
|
* Merge pull request #1221 from jtattermusch/math_serverGravatar Tim Emiola2015-04-08
|\ | | | | Added example math server
* | add calltype decl where missingGravatar Jan Tattermusch2015-04-07
| |
* | csharp version 0.1 -> 0.2Gravatar Jan Tattermusch2015-04-07
| |
| * Added example math serverGravatar Jan Tattermusch2015-04-06
|/
* cleanup of C# API examplesGravatar Jan Tattermusch2015-04-02
|
* Various Windows fixes.Gravatar Nicolas Noble2015-03-19
| | | | | | | | | | | | | | -) using dupenv_s instead of getenv_s and calling strdup ourselves. -) few impossible-to-obtain if checks. -) various signed/unsigned casting. -) using time_t instead of time32_t -) checking output of FormatMessage for failures. -) don't redefine _WIN32_WINNT without undefining it first. -) fixed msvc's interlocked casting. -) renamed AddPort to AddListeningPort. -) added protobuf's third_party includes to search path. -) added a missing definition for inet_ntop in mingw32. -) removed useless declarations.
* added support for metadataGravatar Jan Tattermusch2015-03-16
|
* Started using immutable collections and other code cleanupGravatar Jan Tattermusch2015-03-12
|
* Setting up stylecop to ignore generated files and fixing styleGravatar Jan Tattermusch2015-03-12
|
* code style fixes based on StyleCop warningsGravatar Jan Tattermusch2015-03-11
|
* added stylecop settings fileGravatar Jan Tattermusch2015-03-11
|
* C# server side TLS supportGravatar Jan Tattermusch2015-03-09
|
* Used StyleCop to get rid of tabs in the source codeGravatar Jan Tattermusch2015-03-06
|
* removed some compiler warningsGravatar Jan Tattermusch2015-03-06
|
* Split async call into server and client classes sharing the same base.Gravatar Jan Tattermusch2015-03-06
|
* C# interop client support for external CA fileGravatar Jan Tattermusch2015-03-04
|
* Merge pull request #929 from jtattermusch/csharp_tlsGravatar Tim Emiola2015-03-03
|\ | | | | C# client side support for TLS
* | added C# to run_tests.pyGravatar Jan Tattermusch2015-03-03
| |
| * client side support for TLSGravatar Jan Tattermusch2015-03-03
|/
* Merge pull request #910 from mbrukman/readme-no-execGravatar Nicolas Noble2015-03-02
|\ | | | | Removed execute permissions from README files.
* | Remove HTTP mappings from status.hGravatar Eric Anderson2015-03-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The mappings are a combination of useless, inaccurate, and harmful. Leave them out until they are helpful and correct. Fundamental issues: - If in need of mappings, a user would need HTTP -> gRPC code mappings. But the docs don't provide that since the mappings are not 1:1. - There _is no_ gRPC -> HTTP code mapping taking place in gRPC. This may change in the future, but until then the docs are misleading. But even given those were resolved, there are additional issues. Two obvious examples: - 501 Not Implemented is refering to HTTP methods such as GET and POST not being implement. That should not be used for gRPC methods not found (UNIMPLEMENTED). - 404 Not Found is for when the resource is not found. In gRPC, the resource is the gRPC method, not the parameters (NOT_FOUND). If there is a REST conversion layer on top of gRPC, then 404 would be appropriate, but that just shows that the mapping can not be canonical.