Akka.Configuration.ConfigExtensions.IsNullOrEmpty C# (CSharp) Method

IsNullOrEmpty() public static method

Determines if the supplied configuration has any usable content period.
public static IsNullOrEmpty ( this config ) : bool
config this The configuration used as the source.
return bool
        public static bool IsNullOrEmpty(this Config config)
        {
            return config == null || config.IsEmpty;
        }
    }