Audit.NET.Udp 25.0.4

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

// Install Audit.NET.Udp as a Cake Tool
#tool nuget:?package=Audit.NET.Udp&version=25.0.4

Audit.NET.Udp

UDP provider for Audit.NET library (An extensible framework to audit executing operations in .NET).

Sends Audit Logs as UDP datagrams to a network remote host or a multicast group.

Install

NuGet Package To install the package run the following command on the Package Manager Console:

PM> Install-Package Audit.NET.Udp

NuGet Status NuGet Count

Usage

Please see the Audit.NET Readme

Configuration

Set the static Audit.Core.Configuration.DataProvider property to set the UDP data provider, or call the UseUdp method on the fluent configuration. This should be done before any AuditScope creation, i.e. during application startup.

For example:

Audit.Core.Configuration.DataProvider = new UdpDataProvider()
{
    RemoteAddress = IPAddress.Parse("224.0.0.1"),
    RemotePort = 3333
};

Or by using the fluent configuration API:

Audit.Core.Configuration.Setup()
    .UseUdp(config => config
        .RemoteAddress("224.0.0.1")
        .RemotePort(3333));

Provider Options

Mandatory:

  • RemoteAddress: The address of the remote host or multicast group to which the underlying UdpClient should send the audit events.
  • RemotePort: The port number of the remote host or multicast group to which the underlying UdpClient should send the audit events.

Optional:

  • MulticastMode: To indicate if the RemoteAddress is a multicast group (default is Auto-Detect).
  • CustomSerializer: To specify a custom serialization method for the events to send as UDP packets (default is JSON encoded as UTF-8).
  • CustomDeserializer: To specify a custom deserialization method for the events to receive UDP packets.

Notes

The theoretical limit for the maximum size of a UDP packet is approximately 64Kb, so events that serializes to a length larger than that, will make the provider fail with an exception of type SocketException.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Audit.NET.Udp:

Repository Stars
thepirat000/spleeter-api
Audio separation API using Spleeter from Deezer
Version Downloads Last updated
25.0.4 69 3/24/2024
25.0.3 98 3/13/2024
25.0.2 84 3/12/2024
25.0.1 76 2/28/2024
25.0.0 94 2/16/2024
24.0.1 102 2/12/2024
24.0.0 77 2/12/2024
23.0.0 148 12/14/2023
22.1.0 109 12/9/2023
22.0.2 143 12/1/2023
22.0.1 112 11/16/2023
22.0.0 101 11/14/2023
21.1.0 154 10/9/2023
21.0.4 140 9/15/2023
21.0.3 175 7/9/2023
21.0.2 152 7/6/2023
21.0.1 175 5/27/2023
21.0.0 214 4/15/2023
20.2.4 272 3/27/2023
20.2.3 256 3/17/2023
20.2.2 226 3/14/2023
20.2.1 257 3/11/2023
20.2.0 259 3/7/2023
20.1.6 297 2/23/2023
20.1.5 294 2/9/2023
20.1.4 321 1/28/2023
20.1.3 333 12/21/2022
20.1.2 318 12/14/2022
20.1.1 304 12/12/2022
20.1.0 352 12/4/2022
20.0.4 364 11/30/2022
20.0.3 660 10/28/2022
20.0.2 415 10/26/2022
20.0.1 492 10/21/2022
20.0.0 590 10/1/2022
19.4.1 569 9/10/2022
19.4.0 526 9/2/2022
19.3.0 487 8/23/2022
19.2.2 509 8/11/2022
19.2.1 504 8/6/2022
19.2.0 568 7/24/2022
19.1.4 981 5/23/2022
19.1.3 499 5/22/2022
19.1.2 505 5/18/2022
19.1.1 507 4/28/2022
19.1.0 477 4/10/2022
19.0.7 484 3/13/2022
19.0.6 502 3/7/2022
19.0.5 497 1/28/2022
19.0.4 497 1/23/2022
19.0.3 352 12/14/2021
19.0.2 352 12/11/2021
19.0.1 701 11/20/2021
19.0.0 390 11/11/2021
19.0.0-rc.net60.2 152 9/26/2021
19.0.0-rc.net60.1 195 9/16/2021
18.1.6 438 9/26/2021
18.1.5 433 9/7/2021
18.1.4 416 9/6/2021
18.1.3 450 8/19/2021
18.1.2 509 8/8/2021
18.1.1 442 8/5/2021
18.1.0 474 8/1/2021
18.0.1 473 7/30/2021
18.0.0 447 7/26/2021
17.0.8 479 7/7/2021
17.0.7 528 6/16/2021
17.0.6 517 6/5/2021
17.0.5 482 5/28/2021
17.0.4 475 5/4/2021
17.0.3 459 5/1/2021
17.0.2 436 4/22/2021
17.0.1 410 4/18/2021
17.0.0 510 3/26/2021
16.5.6 508 3/25/2021
16.5.5 447 3/23/2021
16.5.4 497 3/9/2021
16.5.3 464 2/26/2021
16.5.2 484 2/23/2021
16.5.1 465 2/21/2021
16.5.0 466 2/17/2021
16.4.5 511 2/15/2021
16.4.4 461 2/5/2021
16.4.3 470 1/27/2021
16.4.2 471 1/22/2021
16.4.1 515 1/21/2021
16.4.0 452 1/11/2021
16.3.3 499 1/8/2021
16.3.2 525 1/3/2021
16.3.1 535 12/31/2020
16.3.0 468 12/30/2020
16.2.1 510 12/27/2020
16.2.0 581 10/13/2020
16.1.5 555 10/4/2020
16.1.4 536 9/17/2020
16.1.3 638 9/13/2020
16.1.2 556 9/9/2020
16.1.1 571 9/3/2020
16.1.0 566 8/19/2020
16.0.3 633 8/15/2020
16.0.2 606 8/9/2020
16.0.1 671 8/8/2020
16.0.0 551 8/7/2020
15.3.0 608 7/23/2020
15.2.3 537 7/14/2020
15.2.2 629 5/19/2020
15.2.1 587 5/12/2020
15.2.0 635 5/9/2020
15.1.1 629 5/4/2020
15.1.0 599 4/13/2020
15.0.5 611 3/18/2020
15.0.4 644 2/28/2020
15.0.3 639 2/26/2020
15.0.2 723 1/20/2020
15.0.1 664 1/10/2020
15.0.0 665 12/17/2019
14.9.1 672 11/30/2019
14.9.0 622 11/29/2019
14.8.1 611 11/26/2019
14.8.0 858 11/20/2019
14.7.0 645 10/9/2019
14.6.6 676 10/8/2019
14.6.5 663 9/27/2019
14.6.4 658 9/21/2019
14.6.3 698 8/12/2019
14.6.2 707 8/3/2019
14.6.1 677 8/3/2019
14.6.0 661 7/26/2019
14.5.7 697 7/18/2019
14.5.6 682 7/10/2019
14.5.5 703 7/1/2019
14.5.4 683 6/17/2019
14.5.3 704 6/5/2019
14.5.2 730 5/30/2019
14.5.1 713 5/28/2019
14.5.0 683 5/24/2019
14.4.0 690 5/22/2019
14.3.4 683 5/14/2019
14.3.3 668 5/9/2019
14.3.2 707 4/30/2019
14.3.1 746 4/27/2019
14.3.0 763 4/24/2019
14.2.3 708 4/17/2019
14.2.2 750 4/10/2019
14.2.1 703 4/5/2019
14.2.0 742 3/16/2019
14.1.1 754 3/8/2019
14.1.0 817 2/11/2019
14.0.4 785 1/31/2019
14.0.3 808 1/22/2019
14.0.2 839 12/15/2018
14.0.1 881 11/29/2018
14.0.0 902 11/19/2018
13.3.0 887 11/16/2018
13.2.2 873 11/15/2018
13.2.1 870 11/13/2018
13.2.0 889 10/31/2018
13.1.5 889 10/31/2018
13.1.4 886 10/25/2018
13.1.3 894 10/18/2018
13.1.2 923 9/12/2018
13.1.1 912 9/11/2018
13.1.0 947 9/11/2018
13.0.0 975 8/29/2018
12.3.6 925 8/29/2018
12.3.5 936 8/22/2018
12.3.4 958 8/21/2018
12.3.3 25,764 8/21/2018
12.3.2 981 8/20/2018
12.3.1 1,018 8/20/2018
12.3.0 932 8/20/2018
12.2.2 1,019 8/15/2018
12.2.1 1,022 8/9/2018
12.2.0 973 8/8/2018
12.1.11 947 7/30/2018
12.1.10 1,006 7/20/2018
12.1.9 1,209 7/10/2018
12.1.8 1,107 7/2/2018
12.1.7 1,232 6/7/2018
12.1.6 1,103 6/4/2018
12.1.5 1,082 6/2/2018
12.1.4 1,052 5/25/2018
12.1.3 1,261 5/16/2018
12.1.2 1,101 5/15/2018
12.1.1 1,164 5/14/2018
12.1.0 1,172 5/9/2018
12.0.7 1,202 5/5/2018
12.0.6 1,202 5/4/2018
12.0.5 1,136 5/3/2018
12.0.4 1,209 4/30/2018
12.0.3 1,062 4/30/2018
12.0.2 1,179 4/27/2018
12.0.1 1,056 4/25/2018
12.0.0 1,048 4/22/2018
11.2.0 1,077 4/11/2018
11.1.0 1,141 4/8/2018
11.0.8 1,189 3/26/2018
11.0.7 1,081 3/20/2018
11.0.6 1,240 3/7/2018
11.0.5 1,135 2/22/2018
11.0.4 1,139 2/14/2018
11.0.3 1,153 2/12/2018
11.0.2 1,133 2/9/2018
11.0.1 1,061 1/29/2018
11.0.0 1,128 1/15/2018
10.0.3 1,122 12/29/2017
10.0.2 1,162 12/26/2017
10.0.1 1,175 12/18/2017
10.0.0 1,088 12/18/2017
9.3.0 1,209 12/17/2017
9.2.0 1,144 12/17/2017
9.1.3 1,148 12/5/2017
9.1.2 1,130 11/27/2017
9.1.1 1,095 11/21/2017
9.1.0 1,058 11/21/2017
9.0.1 1,102 11/11/2017
9.0.0 1,080 11/10/2017
8.7.0 1,117 11/9/2017
8.6.0 1,089 11/9/2017
8.5.0 1,140 10/3/2017
8.4.0 1,100 10/3/2017
8.3.1 1,365 9/8/2017
8.3.0 1,138 9/8/2017
8.2.0 1,168 9/4/2017
8.1.0 1,171 8/22/2017
8.0.0 1,205 8/19/2017
7.1.3 1,145 8/14/2017
7.1.2 1,139 8/2/2017
7.1.1 1,277 7/27/2017