Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / Imaging / UnmanagedBitmapWrapper.cs / 1305600 / UnmanagedBitmapWrapper.cs
//------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation. All Rights Reserved. // // File: UnmanagedBitmapWrapper.cs // //----------------------------------------------------------------------------- using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Reflection; using MS.Internal; using MS.Win32.PresentationCore; using System.Security; using System.Security.Permissions; using System.Diagnostics; using System.Windows.Media; using System.Globalization; using System.Runtime.InteropServices; using System.Windows; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using MS.Internal.PresentationCore; using SR = MS.Internal.PresentationCore.SR; using SRID = MS.Internal.PresentationCore.SRID; namespace System.Windows.Media.Imaging { internal sealed class UnmanagedBitmapWrapper : BitmapSource { ////// Critical - calls critical code method BitmapSource.UpdateCachedSettings /// TreatAsSafe - all inputs are checked /// [SecurityCritical, SecurityTreatAsSafe] public UnmanagedBitmapWrapper(BitmapSourceSafeMILHandle bitmapSource) : base(true) { _bitmapInit.BeginInit(); // // This constructor is used by BitmapDecoder and BitmapFrameDecode for thumbnails and // previews. The bitmapSource parameter comes from BitmapSource.CreateCachedBitmap // which already calculated memory pressure, so there's no need to do it here. // WicSourceHandle = bitmapSource; _bitmapInit.EndInit(); UpdateCachedSettings(); } #region Protected Methods ////// Critical - eventually access'es critical resources (_wicSource) /// TreatAsSafe - all inputs are checked /// [SecurityCritical, SecurityTreatAsSafe] internal UnmanagedBitmapWrapper(bool initialize) : base(true) { // Call BeginInit and EndInit if initialize is true. if (initialize) { _bitmapInit.BeginInit(); _bitmapInit.EndInit(); } } ////// Implementation of protected override Freezable CreateInstanceCore() { return new UnmanagedBitmapWrapper(false); } private void CopyCommon(UnmanagedBitmapWrapper sourceBitmap) { _bitmapInit.BeginInit(); _bitmapInit.EndInit(); } ///Freezable.CreateInstanceCore . ////// Implementation of protected override void CloneCore(Freezable sourceFreezable) { UnmanagedBitmapWrapper sourceBitmap = (UnmanagedBitmapWrapper)sourceFreezable; base.CloneCore(sourceFreezable); CopyCommon(sourceBitmap); } ///Freezable.CloneCore . ////// Implementation of protected override void CloneCurrentValueCore(Freezable sourceFreezable) { UnmanagedBitmapWrapper sourceBitmap = (UnmanagedBitmapWrapper)sourceFreezable; base.CloneCurrentValueCore(sourceFreezable); CopyCommon(sourceBitmap); } ///Freezable.CloneCurrentValueCore . ////// Implementation of protected override void GetAsFrozenCore(Freezable sourceFreezable) { UnmanagedBitmapWrapper sourceBitmap = (UnmanagedBitmapWrapper)sourceFreezable; base.GetAsFrozenCore(sourceFreezable); CopyCommon(sourceBitmap); } ///Freezable.GetAsFrozenCore . ////// Implementation of protected override void GetCurrentValueAsFrozenCore(Freezable sourceFreezable) { UnmanagedBitmapWrapper sourceBitmap = (UnmanagedBitmapWrapper)sourceFreezable; base.GetCurrentValueAsFrozenCore(sourceFreezable); CopyCommon(sourceBitmap); } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation. All Rights Reserved. // // File: UnmanagedBitmapWrapper.cs // //----------------------------------------------------------------------------- using System; using System.IO; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Reflection; using MS.Internal; using MS.Win32.PresentationCore; using System.Security; using System.Security.Permissions; using System.Diagnostics; using System.Windows.Media; using System.Globalization; using System.Runtime.InteropServices; using System.Windows; using System.Windows.Media.Animation; using System.Windows.Media.Composition; using MS.Internal.PresentationCore; using SR = MS.Internal.PresentationCore.SR; using SRID = MS.Internal.PresentationCore.SRID; namespace System.Windows.Media.Imaging { internal sealed class UnmanagedBitmapWrapper : BitmapSource { ///Freezable.GetCurrentValueAsFrozenCore . ////// Critical - calls critical code method BitmapSource.UpdateCachedSettings /// TreatAsSafe - all inputs are checked /// [SecurityCritical, SecurityTreatAsSafe] public UnmanagedBitmapWrapper(BitmapSourceSafeMILHandle bitmapSource) : base(true) { _bitmapInit.BeginInit(); // // This constructor is used by BitmapDecoder and BitmapFrameDecode for thumbnails and // previews. The bitmapSource parameter comes from BitmapSource.CreateCachedBitmap // which already calculated memory pressure, so there's no need to do it here. // WicSourceHandle = bitmapSource; _bitmapInit.EndInit(); UpdateCachedSettings(); } #region Protected Methods ////// Critical - eventually access'es critical resources (_wicSource) /// TreatAsSafe - all inputs are checked /// [SecurityCritical, SecurityTreatAsSafe] internal UnmanagedBitmapWrapper(bool initialize) : base(true) { // Call BeginInit and EndInit if initialize is true. if (initialize) { _bitmapInit.BeginInit(); _bitmapInit.EndInit(); } } ////// Implementation of protected override Freezable CreateInstanceCore() { return new UnmanagedBitmapWrapper(false); } private void CopyCommon(UnmanagedBitmapWrapper sourceBitmap) { _bitmapInit.BeginInit(); _bitmapInit.EndInit(); } ///Freezable.CreateInstanceCore . ////// Implementation of protected override void CloneCore(Freezable sourceFreezable) { UnmanagedBitmapWrapper sourceBitmap = (UnmanagedBitmapWrapper)sourceFreezable; base.CloneCore(sourceFreezable); CopyCommon(sourceBitmap); } ///Freezable.CloneCore . ////// Implementation of protected override void CloneCurrentValueCore(Freezable sourceFreezable) { UnmanagedBitmapWrapper sourceBitmap = (UnmanagedBitmapWrapper)sourceFreezable; base.CloneCurrentValueCore(sourceFreezable); CopyCommon(sourceBitmap); } ///Freezable.CloneCurrentValueCore . ////// Implementation of protected override void GetAsFrozenCore(Freezable sourceFreezable) { UnmanagedBitmapWrapper sourceBitmap = (UnmanagedBitmapWrapper)sourceFreezable; base.GetAsFrozenCore(sourceFreezable); CopyCommon(sourceBitmap); } ///Freezable.GetAsFrozenCore . ////// Implementation of protected override void GetCurrentValueAsFrozenCore(Freezable sourceFreezable) { UnmanagedBitmapWrapper sourceBitmap = (UnmanagedBitmapWrapper)sourceFreezable; base.GetCurrentValueAsFrozenCore(sourceFreezable); CopyCommon(sourceBitmap); } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Freezable.GetCurrentValueAsFrozenCore . ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- HandlerBase.cs
- BinaryUtilClasses.cs
- XmlElementAttribute.cs
- ToolStripSettings.cs
- ActivityFunc.cs
- MetabaseSettingsIis7.cs
- UserNamePasswordClientCredential.cs
- ChangeInterceptorAttribute.cs
- FastPropertyAccessor.cs
- Dispatcher.cs
- EntityDataSourceWrapperCollection.cs
- SmtpFailedRecipientsException.cs
- ConfigErrorGlyph.cs
- ResXDataNode.cs
- StringResourceManager.cs
- WindowsListViewItemStartMenu.cs
- FrameworkObject.cs
- ToolStripComboBox.cs
- MessageBox.cs
- CommonXSendMessage.cs
- PolyLineSegment.cs
- BrowserCapabilitiesFactoryBase.cs
- EntityDataSourceEntityTypeFilterConverter.cs
- IPGlobalProperties.cs
- XmlEventCache.cs
- DeviceContext2.cs
- ListViewItemMouseHoverEvent.cs
- ApplicationManager.cs
- StorageRoot.cs
- ChildrenQuery.cs
- Choices.cs
- TimeStampChecker.cs
- TitleStyle.cs
- ParentUndoUnit.cs
- RegexCode.cs
- InstanceOwner.cs
- DataGridViewSelectedColumnCollection.cs
- PropertyChangeTracker.cs
- ServicesUtilities.cs
- SqlServer2KCompatibilityAnnotation.cs
- BitmapVisualManager.cs
- LinqExpressionNormalizer.cs
- WindowsUpDown.cs
- EncoderFallback.cs
- NetworkCredential.cs
- PerfService.cs
- Point3DIndependentAnimationStorage.cs
- SolidColorBrush.cs
- TagPrefixCollection.cs
- DateTimeOffset.cs
- ScriptingScriptResourceHandlerSection.cs
- NumericUpDownAccelerationCollection.cs
- SettingsBindableAttribute.cs
- EditorPartCollection.cs
- IIS7UserPrincipal.cs
- CqlParser.cs
- Brush.cs
- MarkerProperties.cs
- WebPartManager.cs
- DataGridDesigner.cs
- ToolBarButtonClickEvent.cs
- ProcessMessagesAsyncResult.cs
- LinqMaximalSubtreeNominator.cs
- MatrixCamera.cs
- BufferedStream.cs
- DynamicRenderer.cs
- _ShellExpression.cs
- PagedDataSource.cs
- Condition.cs
- DrawListViewSubItemEventArgs.cs
- XmlNamespaceMapping.cs
- NamedPermissionSet.cs
- ping.cs
- ProgressBarAutomationPeer.cs
- OdbcDataAdapter.cs
- UIElementHelper.cs
- CommonObjectSecurity.cs
- IteratorFilter.cs
- State.cs
- _ReceiveMessageOverlappedAsyncResult.cs
- SingleResultAttribute.cs
- DynamicQueryableWrapper.cs
- UInt16Converter.cs
- TypeBinaryExpression.cs
- Crc32Helper.cs
- RtfFormatStack.cs
- DbConnectionOptions.cs
- WebPartChrome.cs
- basecomparevalidator.cs
- EmptyEnumerator.cs
- JapaneseCalendar.cs
- RegexInterpreter.cs
- ClientSession.cs
- DataGrid.cs
- MaskedTextBoxDesigner.cs
- SHA384.cs
- DurableOperationContext.cs
- CodeTypeMemberCollection.cs
- PowerStatus.cs