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

GetDefaultUriForAttribute() 공개 메소드

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