Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Data / System / Data / SqlClient / SqlClientWrapperSmiStreamChars.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ObjectDataSourceEventArgs.cs
- OdbcError.cs
- JsonServiceDocumentSerializer.cs
- DocumentViewerHelper.cs
- TraceSwitch.cs
- ResourceExpressionBuilder.cs
- PreviewPrintController.cs
- ProjectedSlot.cs
- InstanceNormalEvent.cs
- UpdateCompiler.cs
- SqlCrossApplyToCrossJoin.cs
- NumericUpDownAccelerationCollection.cs
- RoutedEventValueSerializer.cs
- SvcMapFileSerializer.cs
- tibetanshape.cs
- RepeatButton.cs
- ToolStripItemEventArgs.cs
- RefType.cs
- VScrollBar.cs
- StaticExtension.cs
- Selector.cs
- StreamGeometryContext.cs
- TiffBitmapDecoder.cs
- _RequestCacheProtocol.cs
- WindowsButton.cs
- ToolStripPanelCell.cs
- XmlSchemaAnnotation.cs
- XmlByteStreamReader.cs
- MissingMethodException.cs
- ExpandoObject.cs
- DataObjectSettingDataEventArgs.cs
- ComponentConverter.cs
- NameValueSectionHandler.cs
- JulianCalendar.cs
- URLIdentityPermission.cs
- XmlArrayItemAttribute.cs
- SpecialNameAttribute.cs
- XmlHierarchicalEnumerable.cs
- DesignDataSource.cs
- InfoCardTrace.cs
- TextRunCache.cs
- baseaxisquery.cs
- WindowsGraphics2.cs
- RequiredFieldValidator.cs
- DuplicateWaitObjectException.cs
- AsyncInvokeContext.cs
- WindowsSysHeader.cs
- IndentTextWriter.cs
- ImportContext.cs
- GridErrorDlg.cs
- Set.cs
- TdsValueSetter.cs
- SqlTriggerAttribute.cs
- CodeChecksumPragma.cs
- MexTcpBindingElement.cs
- StringBuilder.cs
- InteropBitmapSource.cs
- MarkupWriter.cs
- CodeCastExpression.cs
- SafeRegistryKey.cs
- EventArgs.cs
- InstanceStoreQueryResult.cs
- Normalization.cs
- MeasurementDCInfo.cs
- SqlDependencyUtils.cs
- _ConnectionGroup.cs
- BaseValidator.cs
- HtmlInputReset.cs
- OrderedDictionary.cs
- X509Certificate2Collection.cs
- WinCategoryAttribute.cs
- InvalidCommandTreeException.cs
- SimpleTextLine.cs
- PrimitiveSchema.cs
- TypeConverterValueSerializer.cs
- BorderGapMaskConverter.cs
- ModelItemKeyValuePair.cs
- StringUtil.cs
- OuterGlowBitmapEffect.cs
- PropertiesTab.cs
- PackUriHelper.cs
- WebEventTraceProvider.cs
- GenerateHelper.cs
- ChainOfResponsibility.cs
- TraceHandler.cs
- ObjectItemCollectionAssemblyCacheEntry.cs
- AccessDataSourceView.cs
- OdbcException.cs
- LineBreakRecord.cs
- ToolBarPanel.cs
- TemplateNameScope.cs
- DistinctQueryOperator.cs
- RichTextBox.cs
- ButtonAutomationPeer.cs
- UserControl.cs
- WebPartMenuStyle.cs
- UserControlDocumentDesigner.cs
- JsonCollectionDataContract.cs
- FontNamesConverter.cs
- PolicyException.cs