Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Data / System / Data / SqlClient / SqlClientWrapperSmiStreamChars.cs / 1 / SqlClientWrapperSmiStreamChars.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- namespace Microsoft.SqlServer.Server { using System; using System.Data.Common; using System.Data.SqlClient; using System.Data.SqlTypes; using System.Diagnostics; using System.IO; // Simple SqlStreamChars wrapper over SmiStream that handles server events on the // SqlClient side of Smi internal class SqlClientWrapperSmiStreamChars : SqlStreamChars { private SmiEventSink_Default _sink; private SmiStream _stream; internal SqlClientWrapperSmiStreamChars( SmiEventSink_Default sink, SmiStream stream ) { Debug.Assert( null != sink ); Debug.Assert( null != stream ); _sink = sink; _stream = stream; } public override bool IsNull { get { return null == _stream; } } public override bool CanRead { get { return _stream.CanRead; } } // If CanSeek is false, Position, Seek, Length, and SetLength should throw. public override bool CanSeek { get { return _stream.CanSeek; } } public override bool CanWrite { get { return _stream.CanWrite; } } public override long Length { get { long length = _stream.GetLength( _sink ); _sink.ProcessMessagesAndThrow(); if ( length > 0 ) return length / sizeof( char ); else return length; } } public override long Position { get { long position = _stream.GetPosition( _sink ) / sizeof( char ); _sink.ProcessMessagesAndThrow(); return position; } set { if ( value < 0 ) { throw ADP.ArgumentOutOfRange("Position"); } _stream.SetPosition( _sink, value * sizeof( char ) ); _sink.ProcessMessagesAndThrow(); } } public override void Flush() { _stream.Flush( _sink ); _sink.ProcessMessagesAndThrow(); } public override long Seek(long offset, SeekOrigin origin) { long result = _stream.Seek( _sink, offset * sizeof( char ), origin ); _sink.ProcessMessagesAndThrow(); return result; } public override void SetLength(long value) { if ( value < 0 ) { throw ADP.ArgumentOutOfRange("value"); } _stream.SetLength( _sink, value * sizeof( char ) ); _sink.ProcessMessagesAndThrow(); } public override int Read(char[] buffer, int offset, int count) { int bytesRead = _stream.Read( _sink, buffer, offset * sizeof( char ), count ); _sink.ProcessMessagesAndThrow(); return bytesRead; } public override void Write(char[] buffer, int offset, int count) { _stream.Write( _sink, buffer, offset, count ); _sink.ProcessMessagesAndThrow(); } // Convenience methods to allow simple pulling/pushing of raw bytes internal int Read(byte[] buffer, int offset, int count) { int bytesRead = _stream.Read( _sink, buffer, offset, count ); _sink.ProcessMessagesAndThrow(); return bytesRead; } internal void Write(byte[] buffer, int offset, int count) { _stream.Write( _sink, buffer, offset, count ); _sink.ProcessMessagesAndThrow(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- namespace Microsoft.SqlServer.Server { using System; using System.Data.Common; using System.Data.SqlClient; using System.Data.SqlTypes; using System.Diagnostics; using System.IO; // Simple SqlStreamChars wrapper over SmiStream that handles server events on the // SqlClient side of Smi internal class SqlClientWrapperSmiStreamChars : SqlStreamChars { private SmiEventSink_Default _sink; private SmiStream _stream; internal SqlClientWrapperSmiStreamChars( SmiEventSink_Default sink, SmiStream stream ) { Debug.Assert( null != sink ); Debug.Assert( null != stream ); _sink = sink; _stream = stream; } public override bool IsNull { get { return null == _stream; } } public override bool CanRead { get { return _stream.CanRead; } } // If CanSeek is false, Position, Seek, Length, and SetLength should throw. public override bool CanSeek { get { return _stream.CanSeek; } } public override bool CanWrite { get { return _stream.CanWrite; } } public override long Length { get { long length = _stream.GetLength( _sink ); _sink.ProcessMessagesAndThrow(); if ( length > 0 ) return length / sizeof( char ); else return length; } } public override long Position { get { long position = _stream.GetPosition( _sink ) / sizeof( char ); _sink.ProcessMessagesAndThrow(); return position; } set { if ( value < 0 ) { throw ADP.ArgumentOutOfRange("Position"); } _stream.SetPosition( _sink, value * sizeof( char ) ); _sink.ProcessMessagesAndThrow(); } } public override void Flush() { _stream.Flush( _sink ); _sink.ProcessMessagesAndThrow(); } public override long Seek(long offset, SeekOrigin origin) { long result = _stream.Seek( _sink, offset * sizeof( char ), origin ); _sink.ProcessMessagesAndThrow(); return result; } public override void SetLength(long value) { if ( value < 0 ) { throw ADP.ArgumentOutOfRange("value"); } _stream.SetLength( _sink, value * sizeof( char ) ); _sink.ProcessMessagesAndThrow(); } public override int Read(char[] buffer, int offset, int count) { int bytesRead = _stream.Read( _sink, buffer, offset * sizeof( char ), count ); _sink.ProcessMessagesAndThrow(); return bytesRead; } public override void Write(char[] buffer, int offset, int count) { _stream.Write( _sink, buffer, offset, count ); _sink.ProcessMessagesAndThrow(); } // Convenience methods to allow simple pulling/pushing of raw bytes internal int Read(byte[] buffer, int offset, int count) { int bytesRead = _stream.Read( _sink, buffer, offset, count ); _sink.ProcessMessagesAndThrow(); return bytesRead; } internal void Write(byte[] buffer, int offset, int count) { _stream.Write( _sink, buffer, offset, count ); _sink.ProcessMessagesAndThrow(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SubpageParagraph.cs
- PropertyHelper.cs
- GridToolTip.cs
- FontFamily.cs
- SubMenuStyleCollectionEditor.cs
- FormsAuthenticationTicket.cs
- SequentialOutput.cs
- AstTree.cs
- EntitySet.cs
- SerialPinChanges.cs
- PathStreamGeometryContext.cs
- TagNameToTypeMapper.cs
- OutputCacheSettings.cs
- ConnectionPointConverter.cs
- SafeSystemMetrics.cs
- ColumnMap.cs
- ContentIterators.cs
- CodeConstructor.cs
- Variant.cs
- PersonalizationStateQuery.cs
- StateMachineWorkflow.cs
- IndexedString.cs
- TreeNodeStyleCollection.cs
- NameValueSectionHandler.cs
- Cursor.cs
- HotSpot.cs
- SqlProvider.cs
- DBConnection.cs
- SmiTypedGetterSetter.cs
- CodeTryCatchFinallyStatement.cs
- ResourcePart.cs
- UpdatePanelTrigger.cs
- XamlToRtfWriter.cs
- Manipulation.cs
- FormViewAutoFormat.cs
- MaskInputRejectedEventArgs.cs
- PKCS1MaskGenerationMethod.cs
- SharedStatics.cs
- SmtpException.cs
- ManagedWndProcTracker.cs
- ListViewContainer.cs
- AutomationPatternInfo.cs
- TdsEnums.cs
- WebPartsPersonalizationAuthorization.cs
- ParentQuery.cs
- AdjustableArrowCap.cs
- ListViewItem.cs
- FontDifferentiator.cs
- ContextMarshalException.cs
- SevenBitStream.cs
- DeflateStream.cs
- ThemeableAttribute.cs
- DataList.cs
- ToolBar.cs
- TypeListConverter.cs
- SupportsEventValidationAttribute.cs
- ListParagraph.cs
- Stopwatch.cs
- XmlAutoDetectWriter.cs
- WinInetCache.cs
- WindowsListView.cs
- DataGridViewRowsRemovedEventArgs.cs
- RenderDataDrawingContext.cs
- EmissiveMaterial.cs
- EntityDesignerBuildProvider.cs
- BufferedGraphics.cs
- AppDomainCompilerProxy.cs
- SqlReorderer.cs
- DataGridViewHitTestInfo.cs
- SelectionRange.cs
- EUCJPEncoding.cs
- TypeUtils.cs
- Size3DValueSerializer.cs
- InternalControlCollection.cs
- QueryConverter.cs
- RemotingAttributes.cs
- DetailsViewDeleteEventArgs.cs
- ContractNamespaceAttribute.cs
- FormsAuthenticationUser.cs
- GetPageNumberCompletedEventArgs.cs
- ErrorTableItemStyle.cs
- ViewStateException.cs
- TraceListener.cs
- ByteAnimation.cs
- ByteFacetDescriptionElement.cs
- _FtpControlStream.cs
- basevalidator.cs
- GraphicsContainer.cs
- SwitchElementsCollection.cs
- ButtonRenderer.cs
- SqlTypeSystemProvider.cs
- SQLDecimal.cs
- EntityUtil.cs
- dataobject.cs
- DbConnectionPool.cs
- SQLChars.cs
- WebScriptServiceHost.cs
- CompositionTarget.cs
- XmlSerializerNamespaces.cs
- DescendentsWalker.cs