Microsoft.CodeAnalysis.Sarif.Errors.CreateNotification C# (CSharp) Method

CreateNotification() private static method

private static CreateNotification ( Uri uri, string notificationId, NotificationLevel level, Exception exception, bool persistExceptionStack ) : Notification
uri System.Uri
notificationId string
level NotificationLevel
exception System.Exception
persistExceptionStack bool
return Notification
        private static Notification CreateNotification(
            Uri uri,
            string notificationId,
            NotificationLevel level,
            Exception exception,
            bool persistExceptionStack,
            params object[] args)
        {
            return CreateNotification(uri, notificationId, null, level, exception, persistExceptionStack, args);
        }

Same methods

Errors::CreateNotification ( Uri uri, string notificationId, string ruleId, NotificationLevel level, Exception exception, bool persistExceptionStack ) : Notification