Rhino.Commonjs.Module.ModuleScript.IsSandboxed C# (CSharp) Method

IsSandboxed() public method

Returns true if this script has a base URI and has a source URI that is contained within that base URI.
Returns true if this script has a base URI and has a source URI that is contained within that base URI.
public IsSandboxed ( ) : bool
return bool
		public virtual bool IsSandboxed()
		{
			return @base != null && uri != null && [email protected](uri).IsAbsoluteUri;
		}
	}