Rhino.Context.IsSealed C# (CSharp) Method

IsSealed() public method

Checks if this is a sealed Context.
Checks if this is a sealed Context. A sealed Context instance does not allow to modify any of its properties and will throw an exception on any such attempt.
public IsSealed ( ) : bool
return bool
		public bool IsSealed()
		{
			return @sealed;
		}
Context