commit | 5a4bacd84ab63af61f819f730e44ebf15fd5902d | [log] [tgz] |
---|---|---|
author | Han Gao <dhangao@hotmail.com> | Thu Oct 13 19:23:35 2022 +0800 |
committer | GitHub <noreply@github.com> | Thu Oct 13 19:23:35 2022 +0800 |
tree | dff18cd241482ed96a166865869cd0bbe30876c9 | |
parent | 56af249a179d68807672ffd5291da404fcb69a06 [diff] |
remove incubator words in project (#47)
ShenYu .NET client can help you register your ASP.NET Core applications into ShenYu, similar with Java client. It supports below registration type,
Please visit related document to start to start.
For http registration, please visit HTTP Registration.
For zookeeper registration, please visit Zookeeper Registration.
For consul registration, please visit Consul Registration.
For nacos registration, please visit Nacos Registration.
For etcd registration, please visit Etcd Registration.
You can use ShenyuClient
attribute to register your APIs.
e.g. add ShenyuClient
attribute in class as route prefix.
[ShenyuClient("/test/**")] public class TestController { ... }
e.g. add ShenyuClient
attribute in method as route path. The final route path will be /test/hello
for this endpoint.
[ShenyuClient("/test")] public class TestController { [ShenyuClient("hello")] public IEnumerable<WeatherForecast> GetTest() { ... } ... }