Apache.NMS.ActiveMQ.Util.IntrospectionSupport.SetProperties C# (CSharp) Method

SetProperties() public static method

Sets the public properties of a target object using a string map. This method uses .Net reflection to identify public properties of the target object matching the keys from the passed map.
public static SetProperties ( object target, StringDictionary map ) : void
target object The object whose properties will be set.
map System.Collections.Specialized.StringDictionary Map of key/value pairs.
return void
        public static void SetProperties(object target, StringDictionary map)
        {
            SetProperties(target, map, "");
        }

Same methods

IntrospectionSupport::SetProperties ( object target, StringDictionary map, string prefix ) : void