Code:
/ DotNET / DotNET / 8.0 / untmp / WIN_WINDOWS / lh_tools_devdiv_wpf / Windows / wcp / TrustUi / MS / Internal / documents / Application / StreamProxy.cs / 1 / StreamProxy.cs
//------------------------------------------------------------------------------ //// Copyright (C) Microsoft Corporation. All rights reserved. // //// Implements the Proxy pattern from Design Patterns for Stream. The intended // usage is to control access to the Stream; specifically to allow one to // replace the underlying stream. The StreamProxy can also ensure, if // desired, that the underlying stream is readonly. // // // History: // 08/28/2005: [....]: Initial implementation. //----------------------------------------------------------------------------- using System; using System.IO; using System.Security; using System.Windows.TrustUI; namespace MS.Internal.Documents.Application { ////// Implements the Proxy pattern from Design Patterns for Stream. The intended /// usage is to control access to the Stream; specifically to allow one to /// replace the underlying stream. The StreamProxy can also ensure, if /// desired, that the underlying stream is readonly. /// internal class StreamProxy : Stream { #region Constructors //------------------------------------------------------------------------- // Constructors //------------------------------------------------------------------------- ////// Will construct a StreamProxy backed by the specified stream and leave /// the target modifiable. /// /// The stream that is backing the proxy. /// internal StreamProxy(Stream targetOfProxy) : this(targetOfProxy, false) { } ////// Will construct a StreamProxy backed by the specified stream and make /// the target read-only if so specified. /// /// The stream that is backing the proxy. /// /// Whether or not the target should be set /// to read-only. ////// Critical /// 1) Setting critical for set values _proxy & _isTargetReadOnly. /// TreatAsSafe /// 1) We only want to ensure that the user cannot circumvent using either /// the constructor or the Target property to set the proxy. Creating /// the StreamProxy itself is a safe operation. /// [SecurityCritical, SecurityTreatAsSafe] internal StreamProxy(Stream targetOfProxy, bool isTargetReadOnly) { _proxy.Value = targetOfProxy; _isTargetReadOnly.Value = isTargetReadOnly; } #endregion Constructors #region Stream Overrides //-------------------------------------------------------------------------- // Stream Overrides //------------------------------------------------------------------------- ////// public override bool CanRead { get { return _proxy.Value.CanRead; } } ////// /// public override bool CanSeek { get { return _proxy.Value.CanSeek; } } ////// /// public override bool CanTimeout { get { return _proxy.Value.CanTimeout; } } ////// /// public override bool CanWrite { get { return _proxy.Value.CanWrite; } } ////// /// public override void Close() { _proxy.Value.Close(); } ////// /// public override void Flush() { _proxy.Value.Flush(); } ////// /// public override long Length { get { return _proxy.Value.Length; } } ////// /// public override long Position { get { return _proxy.Value.Position; } set { _proxy.Value.Position = value; } } ////// /// public override int Read(byte[] buffer, int offset, int count) { return _proxy.Value.Read(buffer, offset, count); } ////// /// public override int ReadTimeout { get { return _proxy.Value.ReadTimeout; } set { _proxy.Value.ReadTimeout = value; } } ////// /// public override long Seek(long offset, SeekOrigin origin) { return _proxy.Value.Seek(offset, origin); } ////// /// public override void SetLength(long value) { _proxy.Value.SetLength(value); } ////// /// public override void Write(byte[] buffer, int offset, int count) { _proxy.Value.Write(buffer, offset, count); } ////// /// public override int WriteTimeout { get { return _proxy.Value.WriteTimeout; } set { _proxy.Value.WriteTimeout = value; } } ////// /// ////// /// Critical /// 1) Setting critical for set value _proxy. /// TreatAsSafe /// 1) Setting to known safe value null. /// [SecurityCritical, SecurityTreatAsSafe] protected override void Dispose(bool disposing) { try { // other operations like async methods in // our base class call us, we need them to // clean up before we release the proxy base.Dispose(disposing); } finally { if (disposing && _proxy.Value != null) { _proxy.Value.Dispose(); _proxy.Value = null; } } } #endregion Stream Overrides #region Object Overrides //-------------------------------------------------------------------------- // Object Overrides //-------------------------------------------------------------------------- ////// public override int GetHashCode() { return _proxy.Value.GetHashCode(); } ////// /// public override bool Equals(object obj) { return _proxy.Value.Equals(obj); } #endregion Object Overrides #region Internal Properties //------------------------------------------------------------------------- // Internal Properties //-------------------------------------------------------------------------- ////// /// Critical /// 1) Setting critical for set value _proxy. /// TreatAsSafe /// 1) It is safe to set the value as long as the StreamProxy was not /// created read-only. /// internal Stream Target { get { return _proxy.Value; } [SecurityCritical, SecurityTreatAsSafe] set { if (!_isTargetReadOnly.Value) { _proxy.Value = value; } else { throw new InvalidOperationException( SR.Get(SRID.FileManagementStreamProxyIsReadOnly)); } } } #endregion Internal Properties #region Private Fields //------------------------------------------------------------------------- // Private Fields //------------------------------------------------------------------------- SecurityCriticalDataForSet_proxy; SecurityCriticalDataForSet _isTargetReadOnly; #endregion Private Fields } } // 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
- MdImport.cs
- COM2ColorConverter.cs
- ExecutionEngineException.cs
- CacheDependency.cs
- AppDomainCompilerProxy.cs
- LinqDataSourceHelper.cs
- SourceInterpreter.cs
- XsdCachingReader.cs
- RadioButtonPopupAdapter.cs
- ListViewTableRow.cs
- RawStylusInput.cs
- WebControlAdapter.cs
- DataRowView.cs
- SessionStateContainer.cs
- CodeExpressionStatement.cs
- InstanceOwner.cs
- ResourceSetExpression.cs
- AppSecurityManager.cs
- RemotingSurrogateSelector.cs
- BufferedWebEventProvider.cs
- UnsafeNativeMethods.cs
- TextDecoration.cs
- DWriteFactory.cs
- XamlBrushSerializer.cs
- AutomationTextAttribute.cs
- QilTypeChecker.cs
- TextFormatter.cs
- DiscoveryDocumentSerializer.cs
- LinkConverter.cs
- PolyQuadraticBezierSegmentFigureLogic.cs
- CrossAppDomainChannel.cs
- SByteStorage.cs
- XmlC14NWriter.cs
- DataGridViewDataConnection.cs
- ErrorHandler.cs
- FileDialog_Vista.cs
- DocumentSequenceHighlightLayer.cs
- LinkButton.cs
- HttpRuntimeSection.cs
- FormatSettings.cs
- AuthenticateEventArgs.cs
- FlowLayoutSettings.cs
- xmlsaver.cs
- ClusterSafeNativeMethods.cs
- DateBoldEvent.cs
- FieldAccessException.cs
- DataGridViewAddColumnDialog.cs
- SqlFacetAttribute.cs
- MatrixAnimationUsingPath.cs
- UnsafeNativeMethods.cs
- DataGridColumnCollection.cs
- HtmlWindowCollection.cs
- CompareValidator.cs
- DescriptionAttribute.cs
- RectangleHotSpot.cs
- NeutralResourcesLanguageAttribute.cs
- SplitterPanel.cs
- FileRecordSequenceHelper.cs
- GZipDecoder.cs
- ThreadStaticAttribute.cs
- CodeIdentifier.cs
- Literal.cs
- X509Chain.cs
- SystemWebSectionGroup.cs
- SmiContextFactory.cs
- EdmValidator.cs
- PrintPageEvent.cs
- ETagAttribute.cs
- TypefaceMap.cs
- MergePropertyDescriptor.cs
- CheckBoxAutomationPeer.cs
- URLIdentityPermission.cs
- SeekStoryboard.cs
- NamespaceMapping.cs
- OdbcConnectionHandle.cs
- TreeNodeClickEventArgs.cs
- Types.cs
- SerialErrors.cs
- DataTableTypeConverter.cs
- RepeaterItemEventArgs.cs
- CodeConditionStatement.cs
- DelegatingTypeDescriptionProvider.cs
- IsolationInterop.cs
- Point3D.cs
- PathFigureCollection.cs
- PagesSection.cs
- XmlSchemaSimpleContent.cs
- MatrixValueSerializer.cs
- PlacementWorkspace.cs
- EnumerableRowCollectionExtensions.cs
- VSWCFServiceContractGenerator.cs
- InkCanvasInnerCanvas.cs
- InternalRelationshipCollection.cs
- KerberosSecurityTokenAuthenticator.cs
- StoreContentChangedEventArgs.cs
- RotateTransform3D.cs
- ChildDocumentBlock.cs
- Regex.cs
- WizardStepBase.cs
- CharEnumerator.cs