NVelocity.VelocityContext.InternalPut C# (CSharp) Méthode

InternalPut() public méthode

stores the value for key to internal storage
public InternalPut ( String key, Object value ) : Object
key String name of value to store
value Object value to store
Résultat Object
        public override Object InternalPut(String key, Object value)
        {
            return context[key] = value;
        }