34 implementations of Name
Microsoft.Diagnostics.DataContractReader.Abstractions (34)
Contracts\IAuxiliarySymbols.cs (1)
11static string IContract.Name { get; } = nameof(AuxiliarySymbols);
Contracts\IBuiltInCOM.cs (1)
48static string IContract.Name { get; } = nameof(BuiltInCOM);
Contracts\ICallingConvention.cs (1)
10static string IContract.Name => nameof(CallingConvention);
Contracts\ICodeNotifications.cs (1)
29static string IContract.Name { get; } = nameof(CodeNotifications);
Contracts\ICodeVersions.cs (1)
18static string IContract.Name { get; } = nameof(CodeVersions);
Contracts\IComWrappers.cs (1)
11static string IContract.Name { get; } = nameof(ComWrappers);
Contracts\IConditionalWeakTable.cs (1)
10static string IContract.Name { get; } = nameof(ConditionalWeakTable);
Contracts\IDacStreams.cs (1)
10static string IContract.Name { get; } = nameof(DacStreams);
Contracts\IDebugger.cs (1)
19static string IContract.Name { get; } = nameof(Debugger);
Contracts\IDebugInfo.cs (1)
114static string IContract.Name { get; } = nameof(DebugInfo);
Contracts\IEcmaMetadata.cs (1)
11static string IContract.Name { get; } = nameof(EcmaMetadata);
Contracts\IException.cs (1)
26static string IContract.Name { get; } = nameof(Exception);
Contracts\IExecutionManager.cs (1)
98static string IContract.Name { get; } = nameof(ExecutionManager);
Contracts\IFeatureFlags.cs (1)
24static string IContract.Name { get; } = nameof(FeatureFlags);
Contracts\IGC.cs (1)
136static string IContract.Name { get; } = nameof(GC);
Contracts\IGCInfo.cs (1)
130static string IContract.Name { get; } = nameof(GCInfo);
Contracts\ILoader.cs (1)
89static string IContract.Name => nameof(Loader);
Contracts\IManagedTypeSource.cs (1)
15static string IContract.Name { get; } = nameof(ManagedTypeSource);
Contracts\INotifications.cs (1)
61static string IContract.Name { get; } = nameof(Notifications);
Contracts\IObject.cs (1)
27static string IContract.Name { get; } = nameof(Object);
Contracts\IObjectiveCMarshal.cs (1)
10static string IContract.Name { get; } = nameof(ObjectiveCMarshal);
Contracts\IPlatformMetadata.cs (1)
16static string IContract.Name { get; } = nameof(PlatformMetadata);
Contracts\IPrecodeStubs.cs (1)
10static string IContract.Name { get; } = nameof(PrecodeStubs);
Contracts\IReJIT.cs (1)
17static string IContract.Name { get; } = nameof(ReJIT);
Contracts\IRuntimeInfo.cs (1)
42static string IContract.Name { get; } = nameof(RuntimeInfo);
Contracts\IRuntimeMutableTypeSystem.cs (1)
11static string IContract.Name { get; } = nameof(RuntimeMutableTypeSystem);
Contracts\IRuntimeTypeSystem.cs (1)
149static string IContract.Name => nameof(RuntimeTypeSystem);
Contracts\ISHash.cs (1)
25static string IContract.Name { get; } = nameof(SHash);
Contracts\ISignature.cs (1)
11static string IContract.Name { get; } = nameof(Signature);
Contracts\IStackWalk.cs (1)
87static string IContract.Name => nameof(StackWalk);
Contracts\IStressLog.cs (1)
37static string IContract.Name { get; } = nameof(StressLog);
Contracts\ISyncBlock.cs (1)
9static string IContract.Name { get; } = nameof(SyncBlock);
Contracts\IThread.cs (1)
81static string IContract.Name { get; } = nameof(Thread);
Contracts\IWindowsErrorReporting.cs (1)
10static string IContract.Name => nameof(WindowsErrorReporting);
8 references to Name
Microsoft.Diagnostics.DataContractReader (2)
CachingContractRegistry.cs (2)
57if (!TryResolveCreator(typeof(TContract), TContract.Name, out Func<Target, IContract>? creator, out failureException)) 88return TryResolveCreator(typeof(TContract), TContract.Name, out _, out failureException);
Microsoft.Diagnostics.DataContractReader.Abstractions (1)
ContractRegistry.cs (1)
172throw failureException ?? new ContractMissingException(TContract.Name);
Microsoft.Diagnostics.DataContractReader.Contracts (5)
CoreCLRContracts.cs (5)
178TContract.Name, 180message: $"Contract '{TContract.Name}' validation failed but no reason was reported."); 194bool providerResolved = target.IsSubDescriptorResolved(TContract.Name); 198TContract.Name, 200message: $"Contract '{TContract.Name}' validation failed but no reason was reported.");