Code:
/ FX-1434 / FX-1434 / 1.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
- FormClosedEvent.cs
- WindowsFormsLinkLabel.cs
- StackOverflowException.cs
- AddDataControlFieldDialog.cs
- NetworkStream.cs
- InfoCardKeyedHashAlgorithm.cs
- LocationReferenceValue.cs
- SynchronizationLockException.cs
- SqlRowUpdatedEvent.cs
- InvokeFunc.cs
- UIServiceHelper.cs
- ToolStripMenuItem.cs
- ApplicationDirectory.cs
- WinFormsUtils.cs
- ObservableDictionary.cs
- CommandField.cs
- ComplexType.cs
- CodeVariableDeclarationStatement.cs
- mansign.cs
- SizeConverter.cs
- FixedSOMFixedBlock.cs
- WorkflowTerminatedException.cs
- Row.cs
- ColorIndependentAnimationStorage.cs
- XmlnsCompatibleWithAttribute.cs
- WindowsScroll.cs
- TemplateBindingExpressionConverter.cs
- StateManagedCollection.cs
- ArrayConverter.cs
- Int32RectValueSerializer.cs
- DurableServiceAttribute.cs
- TimerElapsedEvenArgs.cs
- RowUpdatingEventArgs.cs
- ProcessProtocolHandler.cs
- InstanceDataCollectionCollection.cs
- LookupBindingPropertiesAttribute.cs
- SchemaImporterExtension.cs
- OptimalTextSource.cs
- DockProviderWrapper.cs
- ImpersonationContext.cs
- CacheDict.cs
- ClientConfigurationSystem.cs
- PointLight.cs
- PathHelper.cs
- UserPreferenceChangedEventArgs.cs
- XmlEnumAttribute.cs
- TextElementEnumerator.cs
- ValidationErrorCollection.cs
- DesignerActionMethodItem.cs
- SessionStateItemCollection.cs
- DataColumnPropertyDescriptor.cs
- Command.cs
- TreeChangeInfo.cs
- SystemIcmpV6Statistics.cs
- SapiGrammar.cs
- EntryPointNotFoundException.cs
- XhtmlBasicSelectionListAdapter.cs
- DbDataSourceEnumerator.cs
- ListViewUpdatedEventArgs.cs
- BitmapEffectGeneralTransform.cs
- DocumentsTrace.cs
- ServicePointManagerElement.cs
- _LoggingObject.cs
- SuppressIldasmAttribute.cs
- X509CertificateChain.cs
- Msec.cs
- httpserverutility.cs
- CustomError.cs
- FieldTemplateFactory.cs
- SQLInt16.cs
- ReplyAdapterChannelListener.cs
- ScaleTransform.cs
- IItemContainerGenerator.cs
- DataServiceQueryException.cs
- ControlCachePolicy.cs
- ArgumentDesigner.xaml.cs
- IxmlLineInfo.cs
- FindCriteria11.cs
- InstanceView.cs
- OleCmdHelper.cs
- TreeNodeStyleCollection.cs
- GeometryCombineModeValidation.cs
- XmlHierarchyData.cs
- CodeDomSerializerException.cs
- WebPartDisplayModeCollection.cs
- ArithmeticException.cs
- Expression.cs
- HashCodeCombiner.cs
- ProtocolsConfiguration.cs
- RealizationDrawingContextWalker.cs
- NativeMethods.cs
- oledbmetadatacolumnnames.cs
- SmtpDateTime.cs
- EventEntry.cs
- NativeMethodsCLR.cs
- FixedTextBuilder.cs
- SqlDataReaderSmi.cs
- XmlDataCollection.cs
- AttributeUsageAttribute.cs
- SQLByte.cs