Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Core / CSharp / System / Windows / Media / Imaging / PngBitmapDecoder.cs / 1 / PngBitmapDecoder.cs
//------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation, All Rights Reserved // // File: PngBitmapDecoder.cs // //----------------------------------------------------------------------------- using System; using System.IO; using System.Collections; using System.Security; using System.Security.Permissions; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Reflection; using Microsoft.Win32.SafeHandles; using MS.Internal; using System.Diagnostics; using System.Windows.Media; using System.Globalization; using System.Runtime.InteropServices; namespace System.Windows.Media.Imaging { #region PngBitmapDecoder ////// The built-in Microsoft Png (Bitmap) Decoder. /// public sealed class PngBitmapDecoder : BitmapDecoder { ////// Don't allow construction of a decoder with no params /// private PngBitmapDecoder() { } ////// Create a PngBitmapDecoder given the Uri /// /// Uri to decode /// Bitmap Create Options /// Bitmap Caching Option ////// Critical - access critical resource /// PublicOK - inputs verified or safe /// [SecurityCritical ] public PngBitmapDecoder( Uri bitmapUri, BitmapCreateOptions createOptions, BitmapCacheOption cacheOption ) : base(bitmapUri, createOptions, cacheOption, MILGuidData.GUID_ContainerFormatPng) { } ////// If this decoder cannot handle the bitmap stream, it will throw an exception. /// /// Stream to decode /// Bitmap Create Options /// Bitmap Caching Option ////// Critical - access critical resource /// PublicOK - inputs verified or safe /// [SecurityCritical ] public PngBitmapDecoder( Stream bitmapStream, BitmapCreateOptions createOptions, BitmapCacheOption cacheOption ) : base(bitmapStream, createOptions, cacheOption, MILGuidData.GUID_ContainerFormatPng) { } ////// Internal Constructor /// internal PngBitmapDecoder( SafeMILHandle decoderHandle, BitmapDecoder decoder, Uri baseUri, Uri uri, Stream stream, BitmapCreateOptions createOptions, BitmapCacheOption cacheOption, bool insertInDecoderCache, bool originalWritable, Stream uriStream, UnmanagedMemoryStream unmanagedMemoryStream, SafeFileHandle safeFilehandle ) : base(decoderHandle, decoder, baseUri, uri, stream, createOptions, cacheOption, insertInDecoderCache, originalWritable, uriStream, unmanagedMemoryStream, safeFilehandle) { } #region Internal Abstract /// Need to implement this to derive from the "sealed" object internal override void SealObject() { throw new NotImplementedException(); } #endregion } #endregion } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation, All Rights Reserved // // File: PngBitmapDecoder.cs // //----------------------------------------------------------------------------- using System; using System.IO; using System.Collections; using System.Security; using System.Security.Permissions; using System.ComponentModel; using System.ComponentModel.Design.Serialization; using System.Reflection; using Microsoft.Win32.SafeHandles; using MS.Internal; using System.Diagnostics; using System.Windows.Media; using System.Globalization; using System.Runtime.InteropServices; namespace System.Windows.Media.Imaging { #region PngBitmapDecoder ////// The built-in Microsoft Png (Bitmap) Decoder. /// public sealed class PngBitmapDecoder : BitmapDecoder { ////// Don't allow construction of a decoder with no params /// private PngBitmapDecoder() { } ////// Create a PngBitmapDecoder given the Uri /// /// Uri to decode /// Bitmap Create Options /// Bitmap Caching Option ////// Critical - access critical resource /// PublicOK - inputs verified or safe /// [SecurityCritical ] public PngBitmapDecoder( Uri bitmapUri, BitmapCreateOptions createOptions, BitmapCacheOption cacheOption ) : base(bitmapUri, createOptions, cacheOption, MILGuidData.GUID_ContainerFormatPng) { } ////// If this decoder cannot handle the bitmap stream, it will throw an exception. /// /// Stream to decode /// Bitmap Create Options /// Bitmap Caching Option ////// Critical - access critical resource /// PublicOK - inputs verified or safe /// [SecurityCritical ] public PngBitmapDecoder( Stream bitmapStream, BitmapCreateOptions createOptions, BitmapCacheOption cacheOption ) : base(bitmapStream, createOptions, cacheOption, MILGuidData.GUID_ContainerFormatPng) { } ////// Internal Constructor /// internal PngBitmapDecoder( SafeMILHandle decoderHandle, BitmapDecoder decoder, Uri baseUri, Uri uri, Stream stream, BitmapCreateOptions createOptions, BitmapCacheOption cacheOption, bool insertInDecoderCache, bool originalWritable, Stream uriStream, UnmanagedMemoryStream unmanagedMemoryStream, SafeFileHandle safeFilehandle ) : base(decoderHandle, decoder, baseUri, uri, stream, createOptions, cacheOption, insertInDecoderCache, originalWritable, uriStream, unmanagedMemoryStream, safeFilehandle) { } #region Internal Abstract /// Need to implement this to derive from the "sealed" object internal override void SealObject() { throw new NotImplementedException(); } #endregion } #endregion } // 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
- StringBuilder.cs
- SweepDirectionValidation.cs
- WhitespaceRuleReader.cs
- SqlRowUpdatingEvent.cs
- GeneralTransform2DTo3D.cs
- IdnElement.cs
- CngKey.cs
- SqlCacheDependencyDatabase.cs
- ToolStripDropDownItem.cs
- XmlBinaryReader.cs
- VisualBasicImportReference.cs
- ObjectCloneHelper.cs
- DataGridCellClipboardEventArgs.cs
- SizeLimitedCache.cs
- WindowsStartMenu.cs
- TileModeValidation.cs
- ChannelSinkStacks.cs
- TimeSpanOrInfiniteConverter.cs
- DBSchemaRow.cs
- ConfigurationSectionGroup.cs
- DWriteFactory.cs
- CodeAssignStatement.cs
- InternalConfigRoot.cs
- LeftCellWrapper.cs
- EntityDataSource.cs
- UserPersonalizationStateInfo.cs
- SqlUDTStorage.cs
- ConnectionProviderAttribute.cs
- Run.cs
- TabletDevice.cs
- PageCatalogPart.cs
- UInt32Storage.cs
- LinqDataSourceDeleteEventArgs.cs
- Trace.cs
- WebBrowserSiteBase.cs
- XmlIgnoreAttribute.cs
- ProfessionalColorTable.cs
- ParagraphResult.cs
- DateTimePickerDesigner.cs
- SqlClientFactory.cs
- FormatPage.cs
- WebRequestModuleElementCollection.cs
- CursorConverter.cs
- SchemaCreator.cs
- HttpCookie.cs
- XmlByteStreamWriter.cs
- EncoderNLS.cs
- MonthChangedEventArgs.cs
- Frame.cs
- MouseActionConverter.cs
- TraversalRequest.cs
- ScalarConstant.cs
- FontCollection.cs
- DataReceivedEventArgs.cs
- WindowsSlider.cs
- DeferredTextReference.cs
- FilterEventArgs.cs
- Compiler.cs
- Semaphore.cs
- StylusCaptureWithinProperty.cs
- ValueTypeFieldReference.cs
- SaveWorkflowAsyncResult.cs
- MailDefinition.cs
- CompiledAction.cs
- DBCSCodePageEncoding.cs
- OleTxTransaction.cs
- ColumnResizeUndoUnit.cs
- SQLInt16Storage.cs
- SecurityManager.cs
- StrokeNodeOperations2.cs
- SQLInt64Storage.cs
- prefixendpointaddressmessagefiltertable.cs
- SafeLibraryHandle.cs
- ItemCollection.cs
- Timeline.cs
- CellConstantDomain.cs
- CachedPathData.cs
- BinaryObjectWriter.cs
- formatter.cs
- ArrayConverter.cs
- IWorkflowDebuggerService.cs
- BitStream.cs
- ProxyGenerator.cs
- GatewayIPAddressInformationCollection.cs
- TextEditorTables.cs
- WebReferenceCollection.cs
- AuthenticateEventArgs.cs
- InheritanceUI.cs
- PlainXmlWriter.cs
- EntityClassGenerator.cs
- FieldToken.cs
- XmlFormatExtensionPrefixAttribute.cs
- TextParaClient.cs
- TcpClientChannel.cs
- SetStoryboardSpeedRatio.cs
- CodeCatchClauseCollection.cs
- StructuredType.cs
- cookie.cs
- HtmlValidatorAdapter.cs
- DesignTimeResourceProviderFactoryAttribute.cs