Flowdock
method

local_assign

Importance_0
v1_8_7_330 - Show latest stable - 0 notes - Class: SOAP::Property
local_assign(key, value) protected

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/soap/property.rb, line 199
  def local_assign(key, value)
    check_lock(key)
    if @locked
      if propkey?(value)
        raise FrozenError.new("cannot add any key to locked property")
      elsif propkey?(@store[key])
        raise FrozenError.new("cannot override any key in locked property")
      end
    end
    @store[key] = value
  end
Register or log in to add new notes.