30 references to Object
Microsoft.VisualStudio.LanguageServices (3)
Interop\ComHandle.cs (1)
109if (Object is not TNewObject newObject)
Interop\WeakComHandle.cs (2)
68pUnk = Marshal.GetIUnknownForObject(handle.Object); 79_managedObjectWeakReference = new WeakReference(handle.Object);
Microsoft.VisualStudio.LanguageServices.Implementation (24)
CodeModel\CodeModelProjectCache.cs (4)
187instance.Object.Shutdown(); 206comHandle?.Object.Shutdown(); 239comHandleToShutDown?.Object.Shutdown(); 240comHandleToRename?.Object.OnRename(newFileName);
CodeModel\Collections\BasesCollection.cs (1)
56get { return _fileCodeModel.Object; }
CodeModel\Collections\InheritsImplementsCollection.cs (1)
51get { return _fileCodeModel.Object; }
CodeModel\Collections\NamespaceCollection.cs (1)
51get { return _fileCodeModel.Object; }
CodeModel\Collections\NodeSnapshot.cs (1)
45get { return _fileCodeModel.Object; }
CodeModel\Collections\TypeCollection.cs (1)
52get { return _fileCodeModel.Object; }
CodeModel\FileCodeModel.cs (1)
643get { return _parentHandle.Object as EnvDTE.ProjectItem; }
CodeModel\InternalElements\AbstractCodeElement.cs (1)
40=> _fileCodeModel.Object;
CodeModel\NodeKeyValidation.cs (2)
30var globalNodeKeys = fcm.Object.GetCurrentNodeKeys(); 49e.Key.Object.ResetElementKeys(e.Value);
CodeModel\ParentHandle.cs (1)
20get { return (T)_comHandle.Object; }
CodeModel\ProjectCodeModelFactory.cs (1)
144var codeModel = fileCodeModelHandle.Object;
CodeModel\RootCodeModel.cs (9)
100=> GetFileCodeModel(location).Object.AddAttribute(name, value, position); 103=> GetFileCodeModel(location).Object.AddClass(name, position, bases, implementedInterfaces, access); 106=> GetFileCodeModel(location).Object.AddDelegate(name, type, position, access); 109=> GetFileCodeModel(location).Object.AddEnum(name, position, bases, access); 112=> GetFileCodeModel(location).Object.AddFunction(name, kind, type, position, access); 115=> GetFileCodeModel(location).Object.AddInterface(name, position, bases, access); 118=> GetFileCodeModel(location).Object.AddNamespace(name, position); 121=> GetFileCodeModel(location).Object.AddStruct(name, position, bases, implementedInterfaces, access); 124=> GetFileCodeModel(location).Object.AddVariable(name, type, position, access);
Microsoft.VisualStudio.LanguageServices.Test.Utilities2 (3)
CodeModel\CodeModelTestHelpers.vb (1)
78fcm.Object.TextManagerAdapter = New MockTextManagerAdapter()
CodeModel\CodeModelTestState.vb (2)
57Return _fileCodeModel.Value.Object 69Return _rootCodeModel.Object