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

GetDefaultUriForAttribute() public method

Returns the URI normally associated with the given scheme default attribute.
public GetDefaultUriForAttribute ( string name ) : string
name string The name of the scheme default attribute.
return string
        public string GetDefaultUriForAttribute(string name)
        {
            return (defaultValues.ContainsKey (name) ? defaultValues [name] : null);
        }