Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Core / CSharp / System / Windows / Media / Imaging / JpegBitmapDecoder.cs / 1305600 / JpegBitmapDecoder.cs
//------------------------------------------------------------------------------ // Microsoft Avalon // Copyright (c) Microsoft Corporation, All Rights Reserved // // File: JpegBitmapDecoder.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 JpegBitmapDecoder ////// The built-in Microsoft Jpeg (Bitmap) Decoder. /// public sealed class JpegBitmapDecoder : BitmapDecoder { ////// Don't allow construction of a decoder with no params /// private JpegBitmapDecoder() { } ////// Create a JpegBitmapDecoder given the Uri /// /// Uri to decode /// Bitmap Create Options /// Bitmap Caching Option ////// Critical - access critical resource /// PublicOK - inputs verified or safe /// [SecurityCritical ] public JpegBitmapDecoder( Uri bitmapUri, BitmapCreateOptions createOptions, BitmapCacheOption cacheOption ) : base(bitmapUri, createOptions, cacheOption, MILGuidData.GUID_ContainerFormatJpeg) { } ////// 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 JpegBitmapDecoder( Stream bitmapStream, BitmapCreateOptions createOptions, BitmapCacheOption cacheOption ) : base(bitmapStream, createOptions, cacheOption, MILGuidData.GUID_ContainerFormatJpeg) { } ////// Internal Constructor /// ////// Critical: Uses a SafeFileHandle, which is a SecurityCritical type (in v4). /// Calls SecurityCritical base class constructor. /// [SecurityCritical] internal JpegBitmapDecoder( 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: JpegBitmapDecoder.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 JpegBitmapDecoder ////// The built-in Microsoft Jpeg (Bitmap) Decoder. /// public sealed class JpegBitmapDecoder : BitmapDecoder { ////// Don't allow construction of a decoder with no params /// private JpegBitmapDecoder() { } ////// Create a JpegBitmapDecoder given the Uri /// /// Uri to decode /// Bitmap Create Options /// Bitmap Caching Option ////// Critical - access critical resource /// PublicOK - inputs verified or safe /// [SecurityCritical ] public JpegBitmapDecoder( Uri bitmapUri, BitmapCreateOptions createOptions, BitmapCacheOption cacheOption ) : base(bitmapUri, createOptions, cacheOption, MILGuidData.GUID_ContainerFormatJpeg) { } ////// 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 JpegBitmapDecoder( Stream bitmapStream, BitmapCreateOptions createOptions, BitmapCacheOption cacheOption ) : base(bitmapStream, createOptions, cacheOption, MILGuidData.GUID_ContainerFormatJpeg) { } ////// Internal Constructor /// ////// Critical: Uses a SafeFileHandle, which is a SecurityCritical type (in v4). /// Calls SecurityCritical base class constructor. /// [SecurityCritical] internal JpegBitmapDecoder( 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
- CryptoKeySecurity.cs
- TextRunTypographyProperties.cs
- CallContext.cs
- SoapExtensionTypeElement.cs
- ErrorLog.cs
- HandlerBase.cs
- NativeMethods.cs
- SqlMetaData.cs
- MultipleViewProviderWrapper.cs
- BitStream.cs
- MobileCapabilities.cs
- _Rfc2616CacheValidators.cs
- PanelStyle.cs
- DbDataReader.cs
- PrimitiveOperationFormatter.cs
- PolyBezierSegment.cs
- FileRecordSequenceCompletedAsyncResult.cs
- ToolStripPanelRow.cs
- EventTrigger.cs
- DataPager.cs
- ParameterToken.cs
- _Connection.cs
- Vector3DCollection.cs
- EventRoute.cs
- InkCanvasInnerCanvas.cs
- BrowserDefinitionCollection.cs
- DataObject.cs
- CompressEmulationStream.cs
- PropertyDescriptors.cs
- ContextInformation.cs
- JsonGlobals.cs
- SmiEventStream.cs
- CqlParserHelpers.cs
- FormViewDeleteEventArgs.cs
- ObjectSet.cs
- BindingCompleteEventArgs.cs
- Win32MouseDevice.cs
- PropertyDescriptorCollection.cs
- MemoryStream.cs
- ToolStripItemDesigner.cs
- EndOfStreamException.cs
- TableDesigner.cs
- SymmetricAlgorithm.cs
- DesignerActionVerbList.cs
- PrimarySelectionGlyph.cs
- TextAdaptor.cs
- MultilineStringEditor.cs
- DetailsViewRowCollection.cs
- WorkflowQueueInfo.cs
- RectAnimationUsingKeyFrames.cs
- DictionaryEntry.cs
- Run.cs
- RegionInfo.cs
- SessionSwitchEventArgs.cs
- ValidationRuleCollection.cs
- OLEDB_Enum.cs
- PrintController.cs
- Transform3DGroup.cs
- Rule.cs
- RunInstallerAttribute.cs
- PermissionSetTriple.cs
- InvalidTimeZoneException.cs
- PixelFormat.cs
- WindowsGrip.cs
- MimeTypePropertyAttribute.cs
- HtmlInputFile.cs
- UserPrincipalNameElement.cs
- UnsafePeerToPeerMethods.cs
- TemplateBindingExtensionConverter.cs
- ButtonStandardAdapter.cs
- MenuItemStyleCollection.cs
- AutoGeneratedFieldProperties.cs
- MessageQueueInstaller.cs
- ConstructorExpr.cs
- DataTableReaderListener.cs
- AvTrace.cs
- ReaderWriterLock.cs
- CodeMemberField.cs
- RequestCachePolicy.cs
- ManifestResourceInfo.cs
- OrderedHashRepartitionStream.cs
- TextElementEnumerator.cs
- OleDbPropertySetGuid.cs
- FilterElement.cs
- QueryReaderSettings.cs
- SerialStream.cs
- DataTableNewRowEvent.cs
- StandardBindingOptionalReliableSessionElement.cs
- SymbolTable.cs
- Iis7Helper.cs
- XmlAtomicValue.cs
- DataSourceSelectArguments.cs
- NetNamedPipeBindingCollectionElement.cs
- FlowDocumentPage.cs
- KeyTimeConverter.cs
- JsonEncodingStreamWrapper.cs
- TypeDelegator.cs
- LocatorManager.cs
- ScriptHandlerFactory.cs
- EventLevel.cs