Implemented interface member:
method
Unwrap
System.Runtime.Remoting.IObjectHandle.Unwrap()
21 references to Unwrap
mscorlib (9)
system\appdomain.cs (9)
1128return (int) oh.Unwrap(); 4526return oh.Unwrap(); 4538return oh.Unwrap(); 4561return oh.Unwrap(); 4587return oh.Unwrap(); 4601return oh.Unwrap(); 4617return oh.Unwrap(); 4644return oh.Unwrap(); 4671return oh.Unwrap();
PresentationFramework (2)
src\Framework\MS\Internal\AppModel\XappLauncher.cs (1)
348AppDomain newDomain = (AppDomain)oh.Unwrap();
src\Framework\System\Windows\Interop\DocobjHost.cs (1)
1378AppDomain newDomain = oh.Unwrap() as AppDomain;
System (1)
net\System\Net\_AutoWebProxyScriptWrapper.cs (1)
554site = (IWebProxyScript) handle.Unwrap();
System.AddIn (3)
System\Addin\Hosting\AddInActivator.cs (1)
348ActivationWorker activationWorker = (ActivationWorker) objHandle.Unwrap();
System\Addin\Hosting\AddInServer.cs (1)
68AddInServerWorker server = (AddInServerWorker)workerHandle.Unwrap();
System\Addin\Hosting\AddInStore.cs (1)
1155InspectionWorker worker = (InspectionWorker)inspectionWorkerHandle.Unwrap();
System.Data (1)
fx\src\data\System\Data\SqlClient\SqlDependency.cs (1)
491SqlDependencyProcessDispatcher dependency = (SqlDependencyProcessDispatcher) handle.Unwrap();
System.Web (4)
Hosting\ApplicationHost.cs (1)
58return h.Unwrap();
Hosting\ApplicationManager.cs (3)
293return (h != null) ? h.Unwrap() as IRegisteredObject : null; 396return (h != null) ? h.Unwrap() as IRegisteredObject : null; 1311HostingEnvironment env = (h != null) ? h.Unwrap() as HostingEnvironment : null;
WindowsBase (1)
Base\MS\Internal\AssemblyHelper.cs (1)
235return (handle != null) ? handle.Unwrap() : null;