HandCoded.FpML.Meta.SchemeDefaults.GetDefaultAttributeForScheme C# (CSharp) Method

GetDefaultAttributeForScheme() public method

Returns the name of the scheme default attribute that may provide the default value of a given scheme attribute. For example the currencyScheme attribute will default to the value of the currencySchemeDefault attribute.
public GetDefaultAttributeForScheme ( string name ) : string
name string The name of the scheme attribute
return string
        public string GetDefaultAttributeForScheme(string name)
        {
            return (defaultAttrs.ContainsKey (name) ? defaultAttrs [name] : null);
        }