GetInt(IMetadata, string, int) Method
Gets the value for the specified key converted to an int. This method never throws an exception. It will return the specified default value if the key is not found.
Namespace
Statiq.Common
Containing Type
IMetadataConversionExtensions

Syntax

public static int GetInt(this IMetadata metadata, string key, int defaultValue = 0)

Parameters

Name Type Description
metadata IMetadata The metadata instance.
key string The key of the value to get.
defaultValue int The default value to use if the key is not found or cannot be converted to an int.

Return Value

Type Description
int The value for the specified key converted to an int or the specified default value.