Rhino.Context.IsActivationNeeded C# (CSharp) Method

IsActivationNeeded() public method

Check whether the name is in the list of names of objects forcing the creation of activation objects.
Check whether the name is in the list of names of objects forcing the creation of activation objects.
public IsActivationNeeded ( string name ) : bool
name string the name of the object to test
return bool
		public bool IsActivationNeeded(string name)
		{
			return activationNames != null && activationNames.Contains(name);
		}
Context