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
- OdbcParameterCollection.cs
- ImageFormat.cs
- NegatedConstant.cs
- WebPartConnectionCollection.cs
- DbReferenceCollection.cs
- NetNamedPipeBinding.cs
- IssuedTokenParametersEndpointAddressElement.cs
- CDSCollectionETWBCLProvider.cs
- SqlInfoMessageEvent.cs
- ConstraintCollection.cs
- TypographyProperties.cs
- XsltOutput.cs
- WebConvert.cs
- ControlValuePropertyAttribute.cs
- KeyGesture.cs
- CoTaskMemHandle.cs
- Binding.cs
- ObjectNotFoundException.cs
- BrowserDefinitionCollection.cs
- TraceContextEventArgs.cs
- Pair.cs
- ElementUtil.cs
- RIPEMD160.cs
- SchemaType.cs
- CacheMemory.cs
- Pkcs9Attribute.cs
- ByteStack.cs
- bindurihelper.cs
- CallTemplateAction.cs
- CodeMemberMethod.cs
- RegexCharClass.cs
- PeerNearMe.cs
- DbProviderManifest.cs
- ETagAttribute.cs
- DrawingContextWalker.cs
- SqlCaseSimplifier.cs
- _HeaderInfo.cs
- FixedSOMFixedBlock.cs
- AutoGeneratedFieldProperties.cs
- AppDomainFactory.cs
- FileUpload.cs
- WinEventTracker.cs
- XmlSequenceWriter.cs
- VarInfo.cs
- EntityFunctions.cs
- XamlStyleSerializer.cs
- ToolStripDropTargetManager.cs
- XNodeValidator.cs
- QueryExpr.cs
- ASCIIEncoding.cs
- LabelLiteral.cs
- TextSearch.cs
- NonParentingControl.cs
- HttpValueCollection.cs
- FontFamilyValueSerializer.cs
- EUCJPEncoding.cs
- UidPropertyAttribute.cs
- ServiceDocumentFormatter.cs
- MatrixKeyFrameCollection.cs
- RadioButtonList.cs
- Rect.cs
- SafeRightsManagementQueryHandle.cs
- StringConcat.cs
- WhiteSpaceTrimStringConverter.cs
- VirtualPathProvider.cs
- LinqDataView.cs
- DependencyProperty.cs
- JsonGlobals.cs
- RtType.cs
- StackOverflowException.cs
- SqlDataSourceDesigner.cs
- TransformerInfo.cs
- EventLogPropertySelector.cs
- UTF7Encoding.cs
- ColorInterpolationModeValidation.cs
- ReflectionHelper.cs
- SoapCodeExporter.cs
- Camera.cs
- WebConfigurationManager.cs
- ReflectionTypeLoadException.cs
- BrowserCapabilitiesCompiler.cs
- TemplateParser.cs
- WizardForm.cs
- BlobPersonalizationState.cs
- UIServiceHelper.cs
- RichTextBoxAutomationPeer.cs
- HttpResponseBase.cs
- BoolExpression.cs
- WindowsRegion.cs
- CompositeActivityTypeDescriptorProvider.cs
- MD5.cs
- SmtpReplyReaderFactory.cs
- WorkflowServiceBuildProvider.cs
- XmlDataSourceNodeDescriptor.cs
- PerformanceCounterPermission.cs
- PersonalizationStateInfoCollection.cs
- MaskedTextProvider.cs
- StylusPointCollection.cs
- ColorTranslator.cs
- CodeAccessSecurityEngine.cs