Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Data / System / Data / SqlClient / SqlClientWrapperSmiStream.cs / 1 / SqlClientWrapperSmiStream.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- namespace Microsoft.SqlServer.Server { using System; using System.Data.Common; using System.Diagnostics; using System.IO; // Simple wrapper over SmiStream that handles server events on the SqlClient side of Smi internal class SqlClientWrapperSmiStream : Stream { private SmiEventSink_Default _sink; private SmiStream _stream; internal SqlClientWrapperSmiStream( SmiEventSink_Default sink, SmiStream stream ) { Debug.Assert( null != sink ); Debug.Assert( null != stream ); _sink = sink; _stream = 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(); return length; } } public override long Position { get { long position = _stream.GetPosition( _sink ); _sink.ProcessMessagesAndThrow(); return position; } set { _stream.SetPosition( _sink, value ); _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, origin ); _sink.ProcessMessagesAndThrow(); return result; } public override void SetLength(long value) { _stream.SetLength( _sink, value ); _sink.ProcessMessagesAndThrow(); } public override int Read(byte[] buffer, int offset, int count) { int bytesRead = _stream.Read( _sink, buffer, offset, count ); _sink.ProcessMessagesAndThrow(); return bytesRead; } public override 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Point3D.cs
- CrossAppDomainChannel.cs
- XmlDataImplementation.cs
- ScriptReferenceEventArgs.cs
- SID.cs
- XamlDesignerSerializationManager.cs
- DropDownButton.cs
- FramingFormat.cs
- PrintingPermission.cs
- Menu.cs
- ImmutableObjectAttribute.cs
- BinaryReader.cs
- OleStrCAMarshaler.cs
- FileClassifier.cs
- SkinIDTypeConverter.cs
- GridItemPattern.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- DurationConverter.cs
- SqlRetyper.cs
- SerializationObjectManager.cs
- TextEffect.cs
- DataRowView.cs
- EntityDataSourceWrapperPropertyDescriptor.cs
- FormsAuthenticationUserCollection.cs
- XNodeNavigator.cs
- WebPartRestoreVerb.cs
- latinshape.cs
- BinaryFormatterWriter.cs
- CharUnicodeInfo.cs
- UxThemeWrapper.cs
- Directory.cs
- SecurityTokenTypes.cs
- ScriptManager.cs
- WeakRefEnumerator.cs
- BuildProvider.cs
- HitTestWithPointDrawingContextWalker.cs
- GrammarBuilderDictation.cs
- MessageEncoder.cs
- RectAnimationUsingKeyFrames.cs
- SharedPerformanceCounter.cs
- Automation.cs
- MsmqQueue.cs
- DataObjectAttribute.cs
- WindowsScrollBar.cs
- DrawListViewColumnHeaderEventArgs.cs
- LinqDataSourceInsertEventArgs.cs
- MatrixCamera.cs
- FixUp.cs
- HotSpot.cs
- Vector3DAnimationUsingKeyFrames.cs
- UIAgentAsyncBeginRequest.cs
- DBSqlParserTable.cs
- URLEditor.cs
- ClientOptions.cs
- AnnouncementEventArgs.cs
- ProviderException.cs
- VectorKeyFrameCollection.cs
- PrimitiveType.cs
- ListChangedEventArgs.cs
- KeySpline.cs
- PeerCredential.cs
- RayHitTestParameters.cs
- CorrelationManager.cs
- ConfigXmlText.cs
- InkCanvasSelection.cs
- mediaeventargs.cs
- TextTrailingCharacterEllipsis.cs
- WebBrowserDocumentCompletedEventHandler.cs
- VectorCollectionConverter.cs
- SpeakInfo.cs
- EntityClientCacheEntry.cs
- HtmlString.cs
- RegexParser.cs
- AsymmetricKeyExchangeFormatter.cs
- Empty.cs
- RightNameExpirationInfoPair.cs
- TraceContextRecord.cs
- SelectionManager.cs
- WorkItem.cs
- InkCanvasInnerCanvas.cs
- OutputCacheSettingsSection.cs
- SmiEventSink_Default.cs
- TypeBuilderInstantiation.cs
- DocumentEventArgs.cs
- SafeNativeMethodsMilCoreApi.cs
- COM2ComponentEditor.cs
- InfiniteIntConverter.cs
- PropertyPath.cs
- OutputScope.cs
- ParserContext.cs
- SamlAttribute.cs
- BitmapFrameDecode.cs
- ObjectCloneHelper.cs
- DbConnectionPoolCounters.cs
- FormatterServices.cs
- BitmapMetadataBlob.cs
- PathTooLongException.cs
- KnownTypes.cs
- CodeGenerator.cs
- ScrollEvent.cs