6 writes to assembly
System.Workflow.ComponentModel (6)
AuthoringOM\Compiler\TypeSystem\AssemblyLoader.cs (6)
31
this.
assembly
= trs.GetAssembly(asmName);
39
this.
assembly
= trs.GetAssembly(partialName);
55
this.
assembly
= Assembly.Load(asmName.FullName);
59
this.
assembly
= Assembly.Load(asmName);
71
this.
assembly
= Assembly.LoadFrom(filePath);
85
this.
assembly
= assembly;
9 references to assembly
System.Workflow.ComponentModel (9)
AuthoringOM\Compiler\TypeSystem\AssemblyLoader.cs (9)
34
if (this.
assembly
== null && asmName.GetPublicKeyToken() != null && (asmName.GetPublicKeyToken().GetLength(0) == 0) && asmName.GetPublicKey() != null && (asmName.GetPublicKey().GetLength(0) == 0))
49
if (this.
assembly
== null)
69
if (this.
assembly
== null)
91
if (this.
assembly
!= null)
96
type = this.
assembly
.GetType(typeName);
111
if (this.
assembly
!= null)
114
foreach (Type type in this.
assembly
.GetTypes())
130
this.assemblyName = this.
assembly
.GetName(true);
140
return this.
assembly
;