Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / UIAutomation / Win32Providers / MS / Internal / AutomationProxies / SafeThemeHandle.cs / 1305600 / SafeThemeHandle.cs
//---------------------------------------------------------------------------- // //// Copyright (C) Microsoft Corporation. All rights reserved. // // // Description: // // History: // 10/04/2003 : [....] Created //--------------------------------------------------------------------------- using System; using System.Security; using System.Security.Permissions; using System.Runtime.InteropServices; //using System.Runtime.CompilerServices; using System.Windows.Automation; using Microsoft.Win32.SafeHandles; using MS.Win32; namespace MS.Internal.AutomationProxies { internal sealed class SafeThemeHandle : SafeHandleZeroOrMinusOneIsInvalid { // This constructor is used by the P/Invoke marshaling layer // to allocate a SafeHandle instance. P/Invoke then does the // appropriate method call, storing the handle in this class. private SafeThemeHandle() : base(true) {} // Uncomment this if & only if we need a constructor // that takes a handle from external code internal SafeThemeHandle(IntPtr preexistingHandle, bool ownsHandle) : base(ownsHandle) { SetHandle(preexistingHandle); } // protected override bool ReleaseHandle() { // MustRun methods may only call other MustRun methods, // must not allocate along paths that must succeed, etc. return !IsInvalid ? CloseThemeData(handle) == (IntPtr)NativeMethods.S_OK : true; } [DllImport("UxTheme.dll", CharSet = CharSet.Auto)/*, SuppressUnmanagedCodeSecurity*/] // private static extern IntPtr CloseThemeData(IntPtr handle); } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ObjectAnimationUsingKeyFrames.cs
- CalloutQueueItem.cs
- DataSourceXmlTextReader.cs
- MobileUITypeEditor.cs
- WebPartMovingEventArgs.cs
- CryptoApi.cs
- FileUpload.cs
- CustomError.cs
- DataServiceStreamResponse.cs
- AssociationTypeEmitter.cs
- IncrementalHitTester.cs
- CaseExpr.cs
- DeferredTextReference.cs
- _RegBlobWebProxyDataBuilder.cs
- RangeEnumerable.cs
- DrawingState.cs
- ComponentDesigner.cs
- User.cs
- ProviderSettings.cs
- PublishLicense.cs
- ByteConverter.cs
- SessionStateModule.cs
- TypeTypeConverter.cs
- SchemaCollectionPreprocessor.cs
- HostingEnvironment.cs
- SortedSet.cs
- SessionState.cs
- PriorityItem.cs
- SqlCacheDependencyDatabase.cs
- TextTrailingWordEllipsis.cs
- LockCookie.cs
- Calendar.cs
- BrowserCapabilitiesCompiler.cs
- ErrorFormatterPage.cs
- GradientSpreadMethodValidation.cs
- CodeArgumentReferenceExpression.cs
- mongolianshape.cs
- LogicalExpr.cs
- IndexedDataBuffer.cs
- XmlTextReader.cs
- FixedTextView.cs
- KeyedHashAlgorithm.cs
- XmlName.cs
- DocumentEventArgs.cs
- TextBox.cs
- OdbcConnectionOpen.cs
- messageonlyhwndwrapper.cs
- CircleEase.cs
- AutoCompleteStringCollection.cs
- IMembershipProvider.cs
- GroupItem.cs
- XmlDataImplementation.cs
- DispatcherFrame.cs
- CommandSet.cs
- TrustSection.cs
- BuildManagerHost.cs
- ToolboxItemImageConverter.cs
- TypeExtensionConverter.cs
- DataGridItemAutomationPeer.cs
- WindowsGraphics2.cs
- Command.cs
- path.cs
- HttpContext.cs
- TextBoxRenderer.cs
- WebPartManagerDesigner.cs
- SchemaNames.cs
- ScriptReferenceEventArgs.cs
- OracleTransaction.cs
- EntityProxyTypeInfo.cs
- BamlRecordHelper.cs
- EntityCollection.cs
- DataGridViewCellContextMenuStripNeededEventArgs.cs
- Peer.cs
- FamilyTypeface.cs
- DataObject.cs
- DataSourceSelectArguments.cs
- ACE.cs
- EntityDataReader.cs
- ChineseLunisolarCalendar.cs
- HtmlInputReset.cs
- DataProtection.cs
- XmlCountingReader.cs
- WebRequest.cs
- RadioButtonPopupAdapter.cs
- controlskin.cs
- XPathAncestorQuery.cs
- DbProviderConfigurationHandler.cs
- VisemeEventArgs.cs
- KeyNotFoundException.cs
- ZipIOCentralDirectoryBlock.cs
- TextEditorDragDrop.cs
- InkCanvasInnerCanvas.cs
- NestedContainer.cs
- DesignerActionGlyph.cs
- OnOperation.cs
- HttpCacheVary.cs
- DataSourceCollectionBase.cs
- GenericQueueSurrogate.cs
- WeakHashtable.cs
- XPathScanner.cs