Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / Imaging / BmpBitmapEncoder.cs / 1305600 / BmpBitmapEncoder.cs
//------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation, All Rights Reserved // // File: BmpBitmapEncoder.cs // //----------------------------------------------------------------------------- using System; using System.Collections; using System.Security; using System.Security.Permissions; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Reflection; using MS.Internal; using MS.Win32.PresentationCore; using System.Diagnostics; using System.Windows.Media; using System.Globalization; using System.Windows.Media.Imaging; namespace System.Windows.Media.Imaging { #region BmpBitmapEncoder ////// Built-in Encoder for Bmp files. /// public sealed class BmpBitmapEncoder : BitmapEncoder { #region Constructors ////// Constructor for BmpBitmapEncoder /// ////// Critical - will eventually create unmanaged resources /// PublicOK - all inputs are verified /// [SecurityCritical ] public BmpBitmapEncoder() : base(true) { _supportsPreview = false; _supportsGlobalThumbnail = false; _supportsGlobalMetadata = false; _supportsFrameThumbnails = false; _supportsMultipleFrames = false; _supportsFrameMetadata = false; } #endregion #region Internal Properties / Methods ////// Returns the container format for this encoder /// ////// Critical - uses guid to create unmanaged resources /// internal override Guid ContainerFormat { [SecurityCritical] get { return _containerFormat; } } ////// Setups the encoder and other properties before encoding each frame /// ////// Critical - calls Critical Initialize() /// [SecurityCritical] internal override void SetupFrame(SafeMILHandle frameEncodeHandle, SafeMILHandle encoderOptions) { HRESULT.Check(UnsafeNativeMethods.WICBitmapFrameEncode.Initialize( frameEncodeHandle, encoderOptions )); } #endregion #region Internal Abstract /// Need to implement this to derive from the "sealed" object internal override void SealObject() { throw new NotImplementedException(); } #endregion #region Data Members ////// Critical - CLSID used for creation of critical resources /// [SecurityCritical] private Guid _containerFormat = MILGuidData.GUID_ContainerFormatBmp; #endregion } #endregion // BmpBitmapEncoder } // 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
- UpDownBase.cs
- ByteStorage.cs
- SqlConnectionPoolGroupProviderInfo.cs
- BamlBinaryReader.cs
- XmlAttributes.cs
- InvalidDataException.cs
- SaveFileDialog.cs
- IsolatedStorageSecurityState.cs
- ToolStripSeparator.cs
- PkcsUtils.cs
- TypeContext.cs
- ModifierKeysConverter.cs
- SolidBrush.cs
- SqlProfileProvider.cs
- ElementHostPropertyMap.cs
- GlyphsSerializer.cs
- GetMemberBinder.cs
- ColumnResizeAdorner.cs
- ProfilePropertySettings.cs
- NameValueFileSectionHandler.cs
- XpsFixedPageReaderWriter.cs
- CatalogZoneAutoFormat.cs
- TextProperties.cs
- InvalidCastException.cs
- MouseActionConverter.cs
- ISFTagAndGuidCache.cs
- ResolvedKeyFrameEntry.cs
- DependentTransaction.cs
- WinFormsSpinner.cs
- PropertyTabChangedEvent.cs
- FormsAuthenticationUserCollection.cs
- TextBoxAutomationPeer.cs
- PreProcessInputEventArgs.cs
- TypedReference.cs
- ConfigPathUtility.cs
- ClientApiGenerator.cs
- PowerStatus.cs
- QilXmlWriter.cs
- CollectionDataContractAttribute.cs
- HMACSHA256.cs
- StorageComplexPropertyMapping.cs
- CultureInfo.cs
- FrameworkContentElementAutomationPeer.cs
- Exceptions.cs
- ChangeBlockUndoRecord.cs
- ToolStripOverflow.cs
- SelectQueryOperator.cs
- CompositeDataBoundControl.cs
- WorkflowOwnershipException.cs
- VirtualizedItemPattern.cs
- FixedPageAutomationPeer.cs
- APCustomTypeDescriptor.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- ExceptionList.cs
- DoubleAnimationUsingPath.cs
- NetNamedPipeBindingCollectionElement.cs
- MouseGestureValueSerializer.cs
- DbExpressionRules.cs
- DefaultAsyncDataDispatcher.cs
- PieceDirectory.cs
- BaseCodePageEncoding.cs
- BinaryObjectReader.cs
- RangeBase.cs
- DocobjHost.cs
- StringResourceManager.cs
- odbcmetadatacollectionnames.cs
- DateTimeFormatInfoScanner.cs
- WebDisplayNameAttribute.cs
- QilInvokeEarlyBound.cs
- Positioning.cs
- StickyNoteContentControl.cs
- GuidTagList.cs
- ExtentJoinTreeNode.cs
- PeerNameRecord.cs
- XmlILIndex.cs
- MobileControlDesigner.cs
- ConnectorDragDropGlyph.cs
- SamlAuthenticationStatement.cs
- Encoder.cs
- CqlWriter.cs
- SQLInt64Storage.cs
- ImageMap.cs
- MiniParameterInfo.cs
- ValidationRuleCollection.cs
- NameTable.cs
- RangeBaseAutomationPeer.cs
- SR.cs
- DispatcherSynchronizationContext.cs
- HtmlPhoneCallAdapter.cs
- PolicyLevel.cs
- MasterPageCodeDomTreeGenerator.cs
- VerticalAlignConverter.cs
- Utils.cs
- bidPrivateBase.cs
- PageBreakRecord.cs
- Security.cs
- MimeBasePart.cs
- ConnectionStringsExpressionBuilder.cs
- XmlDigitalSignatureProcessor.cs
- XmlByteStreamWriter.cs