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
- RightsManagementPermission.cs
- FrameSecurityDescriptor.cs
- KerberosSecurityTokenProvider.cs
- CachedPathData.cs
- Internal.cs
- MetadataArtifactLoaderComposite.cs
- XDeferredAxisSource.cs
- BaseParagraph.cs
- ClientUtils.cs
- ToolboxItemAttribute.cs
- PageOutputColor.cs
- WebSysDefaultValueAttribute.cs
- RSAPKCS1KeyExchangeFormatter.cs
- DBCommandBuilder.cs
- nulltextcontainer.cs
- SQLBinary.cs
- ConnectionStringsExpressionBuilder.cs
- EntityDataSourceConfigureObjectContext.cs
- XmlUtf8RawTextWriter.cs
- LocalValueEnumerator.cs
- ObjRef.cs
- DesignerActionPropertyItem.cs
- WaveHeader.cs
- XmlSchemaAnnotated.cs
- EdmTypeAttribute.cs
- TableLayoutCellPaintEventArgs.cs
- SmtpReplyReaderFactory.cs
- SimpleType.cs
- AssemblyCache.cs
- CheckBoxRenderer.cs
- SiteMapNodeItem.cs
- TextEditorThreadLocalStore.cs
- ContentFilePart.cs
- UIntPtr.cs
- TypeSystemProvider.cs
- querybuilder.cs
- SSmlParser.cs
- EventEntry.cs
- SystemIcmpV4Statistics.cs
- XmlStringTable.cs
- NetStream.cs
- LambdaCompiler.cs
- MethodBody.cs
- LassoSelectionBehavior.cs
- GatewayDefinition.cs
- DataBinder.cs
- RichTextBoxConstants.cs
- SecurityTokenReferenceStyle.cs
- PresentationSource.cs
- EncryptedPackageFilter.cs
- SqlInternalConnectionSmi.cs
- ListQueryResults.cs
- SignatureHelper.cs
- SourceChangedEventArgs.cs
- ControlCachePolicy.cs
- SignatureToken.cs
- TextBlockAutomationPeer.cs
- Pointer.cs
- RegionData.cs
- ListDictionaryInternal.cs
- DbgUtil.cs
- WorkflowRuntimeEndpoint.cs
- EntryWrittenEventArgs.cs
- SyndicationDeserializer.cs
- AsynchronousChannelMergeEnumerator.cs
- PreviewPrintController.cs
- PackagingUtilities.cs
- WebPartExportVerb.cs
- CommandField.cs
- CustomAttributeBuilder.cs
- SqlLiftWhereClauses.cs
- ObjectQueryState.cs
- Site.cs
- ApplicationTrust.cs
- RoleManagerModule.cs
- BrowserTree.cs
- CharEnumerator.cs
- OdbcCommand.cs
- BuildResult.cs
- BeginEvent.cs
- PageSetupDialog.cs
- ColumnTypeConverter.cs
- ClassHandlersStore.cs
- XmlWriter.cs
- ExtendedProperty.cs
- TextRunTypographyProperties.cs
- ConfigurationProperty.cs
- WebHttpBindingElement.cs
- Debug.cs
- QueryExpression.cs
- TempFiles.cs
- DatePickerTextBox.cs
- Collection.cs
- Vector3dCollection.cs
- SimpleRecyclingCache.cs
- CachedPathData.cs
- SocketException.cs
- BinaryReader.cs
- BypassElementCollection.cs
- ApplicationProxyInternal.cs