AccidentalFish.ApplicationSupport.Core.Logging.LoggerSource.LoggerSource C# (CSharp) Méthode

LoggerSource() public méthode

Constructor
public LoggerSource ( string fullyQualifiedName ) : System
fullyQualifiedName string Source name
Résultat System
        public LoggerSource(string fullyQualifiedName)
        {
            if (String.IsNullOrWhiteSpace(fullyQualifiedName)) throw new ArgumentNullException(nameof(fullyQualifiedName));

            _fullyQualifiedName = fullyQualifiedName;
        }
LoggerSource