[type:docs] remove disclaimer, update notice and delete license folder (#46)

* remove disclaimer, update notice and delete license folder

* remove useless license files for client
16 files changed
tree: 343d0ccf5f54593d69c7c8d3c2820b9ed76d38d5
  1. .github/
  2. build/
  3. client/
  4. docs/
  5. examples/
  6. .asf.yaml
  7. .editorconfig
  8. .gitignore
  9. .licenserc.yaml
  10. global.json
  11. LICENSE
  12. NOTICE
  13. README.md
  14. RELEASE-NOTES.md
  15. ShenyuClient.sln
README.md

ShenYu .NET client

build codecov.io

ShenYu .NET client can help you register your ASP.NET Core applications into ShenYu, similar with Java client. It supports below registration type,

  • http registration
  • zookeeper registration
  • nacos registration
  • consul registration
  • etcd registration

Getting Started

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.

Attributes

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()
    {
        ...
    }
    ...
}