HandCoded.FpML.Meta.SchemeDefaults.GetDefaultAttributeForScheme C# (CSharp) 메소드

GetDefaultAttributeForScheme() 공개 메소드

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
리턴 string
        public string GetDefaultAttributeForScheme(string name)
        {
            return (defaultAttrs.ContainsKey (name) ? defaultAttrs [name] : null);
        }