GetMagickSettingsProperties() public method

public GetMagickSettingsProperties ( ) : IEnumerable
return IEnumerable
示例#1
0
 private void AddMagickSettingsProperties(XElement annotation)
 {
     foreach (PropertyInfo property in _Types.GetMagickSettingsProperties())
     {
         annotation.AddBeforeSelf(CreateElement(property));
     }
 }