13 overrides of GUID
System.Private.CoreLib (9)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
306public override Guid GUID => throw new NotSupportedException(SR.NotSupported_NonReflectedType);
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeBuilderInstantiation.cs (1)
100public override Guid GUID => throw new NotSupportedException();
src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
87public override Guid GUID => _unmodifiedType.GUID;
src\libraries\System.Private.CoreLib\src\System\Reflection\SignatureType.cs (1)
104public sealed override Guid GUID => throw new NotSupportedException(SR.NotSupported_SignatureType);
src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
41public override Guid GUID => typeImpl.GUID;
src\System\Reflection\Emit\RuntimeEnumBuilder.cs (1)
59public override Guid GUID => m_typeBuilder.GUID;
src\System\Reflection\Emit\RuntimeGenericTypeParameterBuilder.cs (1)
85public override Guid GUID => throw new NotSupportedException();
src\System\Reflection\Emit\RuntimeTypeBuilder.cs (1)
628public override Guid GUID
src\System\RuntimeType.CoreCLR.cs (1)
3356public override unsafe Guid GUID
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
72public override Guid GUID
System.Reflection.Emit (1)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
306public override Guid GUID => throw new NotSupportedException(SR.NotSupported_NonReflectedType);
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Types\RoType.cs (1)
289public abstract override Guid GUID { get; }
System.Windows.Forms.Tests (1)
System\Windows\Forms\ListBindingHelperTests.cs (1)
769public override Guid GUID => throw new NotImplementedException();
50 references to GUID
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (2)
Debugger\Engine\DkmDataContainer.cs (2)
24if (_dataItems.TryGetValue(typeof(T).GUID, out value)) 39Guid key = item.GetType().GUID;
Microsoft.VisualStudio.LanguageServices (13)
DebuggerIntelliSense\AbstractDebuggerIntelliSenseContext.cs (1)
283Marshal.ThrowExceptionForHR(frame[0].QueryViewInterface(typeof(IVsTextView).GUID, out var frameTextView));
EditorConfigSettings\SettingsEditorFactory.cs (2)
109var textLinesGuid = typeof(IVsTextLines).GUID; 110_ = localRegistry.CreateInstance(typeof(VsTextBufferClass).GUID, null, ref textLinesGuid, 1 /*CLSCTX_INPROC_SERVER*/, out var ptr);
Interop\WrapperPolicy.cs (1)
18(IComWrapperFactory)PackageUtilities.CreateInstance(typeof(IComWrapperFactory).GUID);
LanguageService\AbstractLanguageService`2.IVsContainedLanguageFactory.cs (1)
32var webFileCtxServiceGuid = typeof(IWebFileCtxService).GUID;
Progression\GraphProvider.cs (1)
142var searchParameters = context.GetValue<ISolutionSearchParameters>(typeof(ISolutionSearchParameters).GUID.ToString());
ProjectSystem\InvisibleEditor.cs (2)
88var hr = invisibleEditor.GetDocData(fEnsureWritable: needsSave ? 1 : 0, riid: typeof(IVsTextLines).GUID, ppDocData: out var docDataPtrViaTextLines); 98hr = invisibleEditor.GetDocData(fEnsureWritable: needsSave ? 1 : 0, riid: typeof(IVsTextBufferProvider).GUID, ppDocData: out docDataPtrViaTextBufferProvider);
RoslynPackage.cs (4)
103await shell.LoadPackageAsync(typeof(RoslynPackage).GUID); 105if (ErrorHandler.Succeeded(((IVsShell)shell).IsPackageLoaded(typeof(RoslynPackage).GUID, out var package))) 245if (toolWindowType == typeof(ValueTracking.ValueTrackingToolWindow).GUID) 250if (toolWindowType == typeof(StackTraceExplorerToolWindow).GUID)
Utilities\ComEventSink.cs (1)
26connectionPointContainer.FindConnectionPoint(typeof(T).GUID, out var connectionPoint);
Microsoft.VisualStudio.LanguageServices.CSharp (1)
ProjectSystemShim\CSharpProjectShim.ICSharpVenusProjectSite.cs (1)
67var projectSiteGuid = typeof(ICSharpProjectSite).GUID;
PresentationCore (1)
MS\Internal\WindowsRuntime\Windows\UI\ViewManagement\InputPane.cs (1)
106_inputPane = inputPaneInterop?.GetForWindow(hwnd.Value, typeof(InputPaneRcw.IInputPane2).GUID);
PresentationFramework (12)
MS\Internal\Controls\ConnectionPointCookie.cs (1)
26Guid tmp = eventInterface.GUID;
MS\Internal\WindowsRuntime\Generated\Windows.Data.Text.cs (3)
74if (IsOverridableInterface(iid) || typeof(global::WinRT.IInspectable).GUID == iid) 292if (IsOverridableInterface(iid) || typeof(global::WinRT.IInspectable).GUID == iid) 399if (IsOverridableInterface(iid) || typeof(global::WinRT.IInspectable).GUID == iid)
MS\Internal\WindowsRuntime\Generated\Windows.Globalization.cs (1)
179if (IsOverridableInterface(iid) || typeof(global::WinRT.IInspectable).GUID == iid)
MS\Internal\WindowsRuntime\Generated\WinRT.cs (1)
210Guid iid = typeof(IActivationFactoryVftbl).GUID;
MS\Internal\WindowsRuntime\Generated\WinRT\ComWrappersSupport.net5.cs (2)
79IID = typeof(IUnknownVftbl).GUID, 86IID = typeof(IInspectable).GUID,
MS\Internal\WindowsRuntime\Generated\WinRT\Context.cs (1)
16Guid riid = typeof(IContextCallback).GUID;
MS\Internal\WindowsRuntime\Generated\WinRT\GuidGenerator.cs (3)
15return type.GetGuidType().GUID; 23return type.GUID; 100return $"{{{type.GUID}}}";
ReachFramework (1)
Serialization\RCW\PrintDocumentPackageStatusProvider.cs (1)
21Guid riid = typeof(IPrintDocumentPackageStatusEvent).GUID;
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Reflection\ModifiedType.cs (1)
87public override Guid GUID => _unmodifiedType.GUID;
src\libraries\System.Private.CoreLib\src\System\Reflection\TypeDelegator.cs (1)
41public override Guid GUID => typeImpl.GUID;
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\Marshal.cs (1)
1058return type.GUID;
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingType.cs (1)
74get { return _typeInfo.GUID; }
System.Runtime.InteropServices (2)
System\Runtime\InteropServices\ComAwareEventInfo.cs (1)
118Guid guid = sourceInterface.GUID;
System\Runtime\InteropServices\Marshalling\ComImportInteropInterfaceDetailsStrategy.cs (1)
117return new ComImportDetails(runtimeType.GUID, implementationType);
System.Windows.Forms (9)
System\Windows\Forms\ActiveX\AxHost.AxPropertyDescriptor.cs (1)
60if (PropertyType.GUID.Equals(s_dataSource_Guid))
System\Windows\Forms\ActiveX\AxHost.ConnectionPointCookie.cs (1)
48Guid riid = eventInterface.GUID;
System\Windows\Forms\ActiveX\AxHost.cs (1)
192_axState[s_assignUniqueID] = !GetType().GUID.Equals(s_comctlImageCombo_Clsid);
System\Windows\Forms\ActiveX\Control.ActiveXImpl.cs (1)
1423if (hr.Failed || container.Value->FindConnectionPoint(eventInterface.GUID, connectionPoint).Failed)
System\Windows\Forms\ActiveX\Control_ActiveXControlInterfaces.cs (5)
247*pClsid = GetType().GUID; 361*pClassID = GetType().GUID; 376*pClassID = GetType().GUID; 402*pClassID = GetType().GUID; 448*pClassID = GetType().GUID;
System.Windows.Forms.Primitives.Tests (3)
Interop\Oleaut32\ITypeInfoTests.cs (1)
251Assert.Equal(typeof(IPictureDisp).GUID, pTypeAttr->guid);
Interop\Oleaut32\VARIANTTests.cs (2)
5496GetGuidAction = () => (typeof(int).GUID, HRESULT.S_OK) 5613GetGuidAction = () => (typeof(int).GUID, HRESULT.S_OK)
System.Windows.Forms.Tests (2)
System\Windows\Forms\ComponentModel\Com2Interop\ComNativeDescriptorTests.cs (2)
93Guid guid = typeof(WindowsMediaPlayerClass).GUID; 110Guid guid = typeof(WindowsMediaPlayerClass).GUID;