4 overrides of Name
System.Private.CoreLib (2)
src\System\Reflection\Emit\RuntimeModuleBuilder.cs (1)
732
public override string
Name
=> InternalModule.Name;
src\System\Reflection\RuntimeModule.cs (1)
499
public override string
Name
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingModule.cs (1)
54
public override string
Name
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Modules\RoModule.cs (1)
48
public sealed override string
Name
8 references to Name
CSharpSyntaxGenerator (1)
Program.cs (1)
86
var programName = " " + typeof(Program).GetTypeInfo().Assembly.ManifestModule.
Name
;
PresentationFramework (3)
System\Windows\Documents\TextRangeSerialization.cs (3)
569
int index = elementTypeStandardized.Module.
Name
.LastIndexOf('.');
570
string assembly = (index == -1 ? elementTypeStandardized.Module.
Name
: elementTypeStandardized.Module.
Name
.Substring(0, index));
System.Configuration.ConfigurationManager (2)
System\Configuration\ClientConfigPaths.cs (2)
67
ApplicationUri = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, exeAssembly.ManifestModule.
Name
);
263
else if (Uri.TryCreate(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, assembly.ManifestModule.
Name
), UriKind.Absolute, out Uri codeBase))
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingModule.cs (1)
56
get { return UnderlyingModule.
Name
; }
System.Windows.Forms (1)
System\Windows\Forms\Application.cs (1)
960
var moduleHandle = PInvoke.GetModuleHandle(module.
Name
);