NgrokSharp 1.0.9
The owner has unlisted this package.
This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package NgrokSharp --version 1.0.9
NuGet\Install-Package NgrokSharp -Version 1.0.9
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="NgrokSharp" Version="1.0.9" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NgrokSharp --version 1.0.9
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: NgrokSharp, 1.0.9"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install NgrokSharp as a Cake Addin #addin nuget:?package=NgrokSharp&version=1.0.9 // Install NgrokSharp as a Cake Tool #tool nuget:?package=NgrokSharp&version=1.0.9
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
About The Project
Built With
Getting Started
Installation
Install via nuget.org
Usage
Code example
static async Task Main(string[] args)
{
INgrokManager _ngrokManager;
_ngrokManager = new NgrokManager();
await _ngrokManager.DownloadAndUnzipNgrokAsync();
// Insert your token, if you have one.
//await _ngrokManager.RegisterAuthTokenAsync("Your token");
_ngrokManager.StartNgrok();
var tunnel = new StartTunnelDTO
{
name = "reverse proxy",
proto = "http",
addr = "8080"
};
var httpResponseMessage = await _ngrokManager.StartTunnelAsync(tunnel);
if ((int)httpResponseMessage.StatusCode == 201)
{
var tunnelDetail =
JsonConvert.DeserializeObject<TunnelDetailDTO>(
await httpResponseMessage.Content.ReadAsStringAsync());
Console.WriteLine(tunnelDetail.PublicUrl);
}
}
Projects using NgrokSharp
Roadmap
See the open issues for a list of proposed features (and known issues).
Contributing
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated. But first please read this.
License
Distributed under the MIT License. See LICENSE
for more information.
Acknowledgements
Thanks to these
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net5.0
- Mono.Posix.NETStandard (>= 5.20.1-preview)
- Newtonsoft.Json (>= 13.0.1)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on NgrokSharp:
Package | Downloads |
---|---|
Neon.Operator
Kubernetes Operator SDK. |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|