ConfigExtensionsIsNullOrEmpty Method |
Convenience method for determining if
Config has any usable content period.
Namespace: Akka.ConfigurationAssembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntaxpublic static bool IsNullOrEmpty(
this Config config
)
<ExtensionAttribute>
Public Shared Function IsNullOrEmpty (
config As Config
) As Boolean
public:
[ExtensionAttribute]
static bool IsNullOrEmpty(
Config^ config
)
[<ExtensionAttribute>]
static member IsNullOrEmpty :
config : Config -> bool
Parameters
- config
- Type: Akka.ConfigurationConfig
[Missing <param name="config"/> documentation for "M:Akka.Configuration.ConfigExtensions.IsNullOrEmpty(Akka.Configuration.Config)"]
Return Value
Type:
Booleantrue if the
Config is null or
IsEmpty return true; false otherwise.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Config. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also