Aura.Shared.Scripting.ScriptManager.GetScriptType C# (CSharp) Method

GetScriptType() public method

Returns the type of the script with the given name.
public GetScriptType ( string typeName ) : Type
typeName string
return System.Type
		public Type GetScriptType(string typeName)
		{
			Type result;
			_scripts.TryGetValue(typeName, out result);
			return result;
		}
	}