• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

DomCR / ACadSharp / 29143042407

11 Jul 2026 06:34AM UTC coverage: 2.912% (-73.0%) from 75.918%
29143042407

push

github

web-flow
Merge pull request #1146 from ilCosmico/acds-read-payload-anchor

Read the AcDs payload area offset from the data segment header

264 of 12999 branches covered (2.03%)

Branch coverage included in aggregate %.

0 of 30 new or added lines in 1 file covered. (0.0%)

31243 existing lines in 465 files now uncovered.

1337 of 41984 relevant lines covered (3.18%)

5.38 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/ACadSharp/IO/NotificationEventHandler.cs
1
using System;
2

3
namespace ACadSharp.IO;
4

5
/// <summary>
6
/// Represents the method that handles a notification event raised by an object.
7
/// </summary>
8
/// <param name="sender">The source of the event.</param>
9
/// <param name="e">A NotificationEventArgs object that contains the event data.</param>
10
public delegate void NotificationEventHandler(object sender, NotificationEventArgs e);
11

12
/// <summary>
13
/// Provides data for notification events, including the message, notification type, and any associated exception.
14
/// </summary>
15
/// <remarks>Use this class with event handlers to receive detailed information about notifications, such as
16
/// informational messages, warnings, or errors. The properties expose the notification message, its type, and an
17
/// optional exception if the notification is related to an error condition.</remarks>
18
public class NotificationEventArgs : EventArgs
19
{
20
        /// <summary>
21
        /// Gets the message.
22
        /// </summary>
23
        public string Message { get; }
×
24

25
        /// <summary>
26
        /// Gets the type of notification.
27
        /// </summary>
UNCOV
28
        public NotificationType NotificationType { get; }
×
29

30
        /// <summary>
31
        /// Gets the exception that caused the current operation to fail.
32
        /// </summary>
33
        public Exception Exception { get; }
×
34

UNCOV
35
        public NotificationEventArgs(string message, NotificationType notificationType = NotificationType.None, Exception exception = null)
×
UNCOV
36
        {
×
UNCOV
37
                this.Message = message;
×
UNCOV
38
                this.NotificationType = notificationType;
×
UNCOV
39
                this.Exception = exception;
×
UNCOV
40
        }
×
41
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc