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
- HtmlInputReset.cs
- WorkflowQueueInfo.cs
- FactoryId.cs
- CompositionAdorner.cs
- ExpressionVisitor.cs
- KeyTimeConverter.cs
- StandardOleMarshalObject.cs
- TabletDeviceInfo.cs
- TaskResultSetter.cs
- TableRow.cs
- TreeViewImageIndexConverter.cs
- WebControlAdapter.cs
- GridProviderWrapper.cs
- SqlDataSourceCommandEventArgs.cs
- ForEach.cs
- ActionItem.cs
- Clock.cs
- TextEndOfLine.cs
- EncoderParameters.cs
- BaseDataList.cs
- ContractUtils.cs
- RSAOAEPKeyExchangeDeformatter.cs
- DragStartedEventArgs.cs
- TableLayoutSettings.cs
- ListViewGroupItemCollection.cs
- Form.cs
- CellParaClient.cs
- DataTableTypeConverter.cs
- XomlCompilerResults.cs
- MemberProjectedSlot.cs
- WebScriptMetadataInstanceContextProvider.cs
- AsyncPostBackErrorEventArgs.cs
- safex509handles.cs
- TraceSource.cs
- Lasso.cs
- ConfigurationValidatorBase.cs
- Deserializer.cs
- PersonalizationDictionary.cs
- ScriptReference.cs
- HwndSourceKeyboardInputSite.cs
- ServerIdentity.cs
- ResXBuildProvider.cs
- ProfileBuildProvider.cs
- FirstMatchCodeGroup.cs
- ParallelEnumerable.cs
- SoapIncludeAttribute.cs
- ErrorTolerantObjectWriter.cs
- RepeatBehavior.cs
- WindowsFormsSynchronizationContext.cs
- baseaxisquery.cs
- SqlOuterApplyReducer.cs
- NativeMethods.cs
- WinEventWrap.cs
- ResourceDescriptionAttribute.cs
- safelink.cs
- TextBoxAutoCompleteSourceConverter.cs
- Enum.cs
- SecurityContext.cs
- RefreshEventArgs.cs
- GroupBoxRenderer.cs
- ToolStripItemCollection.cs
- StyleSelector.cs
- MutexSecurity.cs
- LayoutUtils.cs
- FixedSOMContainer.cs
- EmptyEnumerable.cs
- LinkArea.cs
- CqlQuery.cs
- XmlMessageFormatter.cs
- AliasGenerator.cs
- ActivationServices.cs
- DiscoveryDocumentSearchPattern.cs
- HTMLTextWriter.cs
- MsdtcWrapper.cs
- FontDifferentiator.cs
- DictionaryTraceRecord.cs
- NullableDoubleMinMaxAggregationOperator.cs
- ThreadInterruptedException.cs
- TcpProcessProtocolHandler.cs
- HttpProfileGroupBase.cs
- CodeValidator.cs
- TypeContext.cs
- XmlProcessingInstruction.cs
- NamedElement.cs
- StorageAssociationSetMapping.cs
- LayoutEditorPart.cs
- JsonDeserializer.cs
- LicFileLicenseProvider.cs
- RoleGroup.cs
- DataGridViewCellCancelEventArgs.cs
- NextPreviousPagerField.cs
- SHA384Managed.cs
- XmlNamespaceMappingCollection.cs
- PopupRoot.cs
- WebBrowserEvent.cs
- FontFamilyConverter.cs
- ItemsChangedEventArgs.cs
- Error.cs
- DirectionalLight.cs
- TableAdapterManagerNameHandler.cs