Rhino.Context.AddActivationName C# (CSharp) Method

AddActivationName() public method

Add a name to the list of names forcing the creation of real activation objects for functions.
Add a name to the list of names forcing the creation of real activation objects for functions.
public AddActivationName ( string name ) : void
name string the name of the object to add to the list
return void
		public virtual void AddActivationName(string name)
		{
			if (@sealed)
			{
				OnSealedMutation();
			}
			if (activationNames == null)
			{
				activationNames = new HashSet<string>();
			}
			activationNames.Add(name);
		}
Context