Exemplo n.º 1
0
 public static ScriptReference Dll(string dllGuid, Type type)
 {
     return(new ScriptReference(dllGuid, ScriptUtility.GetDllFileID(type)));
 }
Exemplo n.º 2
0
 public static ScriptReference Dll(string dllGuid, string @namespace, string typeName)
 {
     return(new ScriptReference(dllGuid, ScriptUtility.GetDllFileID(@namespace, typeName)));
 }
Exemplo n.º 3
0
 public static ScriptReference Existing(Type type)
 {
     return(new ScriptReference(ScriptUtility.GetScriptGuid(type), ScriptUtility.GetFileID(type)));
 }