ZF.Pusher 1.0.0

dotnet add package ZF.Pusher --version 1.0.0
NuGet\Install-Package ZF.Pusher -Version 1.0.0
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="ZF.Pusher" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ZF.Pusher --version 1.0.0
#r "nuget: ZF.Pusher, 1.0.0"
#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 ZF.Pusher as a Cake Addin
#addin nuget:?package=ZF.Pusher&version=1.0.0

// Install ZF.Pusher as a Cake Tool
#tool nuget:?package=ZF.Pusher&version=1.0.0

ZF.Pusher

a push notify framework.

Usage

public class DingTalkClientTest
{
    private readonly ITestOutputHelper _testOutputHelper;

    public DingTalkClientTest(ITestOutputHelper testOutputHelper)
    {
        _testOutputHelper = testOutputHelper;
    }

    private const string url = "https://oapi.dingtalk.com/robot/send?access_token=7e378ae90456722aab10af28c55c024a13d7e0a3686c67001486ec164f7d9b05&key=SEC6f9ce9fgsdahjfj35633435b18018d4136171bfa5e2236a3d6ddb393432059b9f445337e9";
    private readonly DingTalkClient dingTalkClient = new(url);

    [Fact(DisplayName = "DingTalkTextContent", Timeout = 3000)]
    public async Task DingTalkTextContent()
    {
        var result = await dingTalkClient.SendAsync(new DingTalkTextContent("hello"));

        _testOutputHelper.WriteLine(result);

        Assert.True(true);
    }
    
    [Fact(DisplayName = "DingTalkLinkContent", Timeout = 3000)]
    public async Task DingTalkLinkContent()
    {
        var result = await dingTalkClient.SendAsync(new DingTalkLinkContent(new Link
        {
            Title = "hello",
            Text = "hello world",
            MessageUrl = "https://www.bing.com",
        }));

        _testOutputHelper.WriteLine(result);

        Assert.True(true);
    }
    
    [Fact(DisplayName = "DingTalkMarkdownContent", Timeout = 3000)]
    public async Task DingTalkMarkdownContent()
    {
        var result = await dingTalkClient.SendAsync(new DingTalkMarkdownContent("hello", "hello world"));

        _testOutputHelper.WriteLine(result);

        Assert.True(true);
    }
}
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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.
  • net6.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 90 4/11/2024