System.Windows.Browser.ManagedObject.RegisterScriptableType C# (CSharp) Method

RegisterScriptableType() static private method

static private RegisterScriptableType ( Type type ) : void
type Type
return void
		static void RegisterScriptableType (Type type)
		{
			string name = ScriptName (type);
			if (!HtmlPage.ScriptableTypes.ContainsKey (name))
				HtmlPage.ScriptableTypes[name] = type;
		}