Rhino.Context.GetClassShutter C# (CSharp) Method

GetClassShutter() private method

private GetClassShutter ( ) : ClassShutter
return ClassShutter
		internal ClassShutter GetClassShutter()
		{
			lock (this)
			{
				return classShutter;
			}
		}

Usage Example

Example #1
0
		private static bool IsVisible(Context cx, object obj)
		{
			ClassShutter shutter = cx.GetClassShutter();
			return shutter == null || shutter.VisibleToScripts(obj.GetType().FullName);
		}
Context