ArtemisComm.Proxy.Logger.PropertyValue.PropertyValue C# (CSharp) Method

PropertyValue() public method

public PropertyValue ( string propertyName, string value, string objectType, string hexValue ) : System
propertyName string
value string
objectType string
hexValue string
return System
        public PropertyValue(string propertyName, string value, string objectType, string hexValue)
        {
            PropertyName = propertyName;
            Value = value;
            ObjectType = objectType;
            HexValue = hexValue;
        }
        public string PropertyName { get; private set; }
PropertyValue