Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Data / Microsoft / SqlServer / Server / SmiGettersStream.cs / 1 / SmiGettersStream.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- namespace Microsoft.SqlServer.Server { using System; using System.Data.Common; using System.Data.SqlClient; using System.IO; using System.Diagnostics; internal class SmiGettersStream : Stream { private SmiEventSink_Default _sink; private ITypedGettersV3 _getters; private int _ordinal; private long _readPosition; private SmiMetaData _metaData; internal SmiGettersStream( SmiEventSink_Default sink, ITypedGettersV3 getters, int ordinal, SmiMetaData metaData ) { Debug.Assert( null != sink ); Debug.Assert( null != getters ); Debug.Assert( 0 <= ordinal ); Debug.Assert( null != metaData ); _sink = sink; _getters = getters; _ordinal = ordinal; _readPosition = 0; _metaData = metaData; } public override bool CanRead { get { return true; } } // If CanSeek is false, Position, Seek, Length, and SetLength should throw. public override bool CanSeek { get { return false; } } public override bool CanWrite { get { return false; } } public override long Length { get { return ValueUtilsSmi.GetBytesInternal( _sink, _getters, _ordinal, _metaData, 0, null, 0, 0, false ); } } public override long Position { get { return _readPosition; } set { throw SQL.StreamSeekNotSupported(); } } public override void Flush() { throw SQL.StreamWriteNotSupported(); } public override long Seek(long offset, SeekOrigin origin) { throw SQL.StreamSeekNotSupported(); } public override void SetLength(long value) { throw SQL.StreamWriteNotSupported(); } public override int Read( byte[] buffer, int offset, int count ) { long bytesRead = ValueUtilsSmi.GetBytesInternal( _sink, _getters, _ordinal, _metaData, _readPosition, buffer, offset, count, false ); _readPosition += bytesRead; return checked( (int) bytesRead ); } public override void Write( byte[] buffer, int offset, int count ) { throw SQL.StreamWriteNotSupported(); } } } // 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.IO; using System.Diagnostics; internal class SmiGettersStream : Stream { private SmiEventSink_Default _sink; private ITypedGettersV3 _getters; private int _ordinal; private long _readPosition; private SmiMetaData _metaData; internal SmiGettersStream( SmiEventSink_Default sink, ITypedGettersV3 getters, int ordinal, SmiMetaData metaData ) { Debug.Assert( null != sink ); Debug.Assert( null != getters ); Debug.Assert( 0 <= ordinal ); Debug.Assert( null != metaData ); _sink = sink; _getters = getters; _ordinal = ordinal; _readPosition = 0; _metaData = metaData; } public override bool CanRead { get { return true; } } // If CanSeek is false, Position, Seek, Length, and SetLength should throw. public override bool CanSeek { get { return false; } } public override bool CanWrite { get { return false; } } public override long Length { get { return ValueUtilsSmi.GetBytesInternal( _sink, _getters, _ordinal, _metaData, 0, null, 0, 0, false ); } } public override long Position { get { return _readPosition; } set { throw SQL.StreamSeekNotSupported(); } } public override void Flush() { throw SQL.StreamWriteNotSupported(); } public override long Seek(long offset, SeekOrigin origin) { throw SQL.StreamSeekNotSupported(); } public override void SetLength(long value) { throw SQL.StreamWriteNotSupported(); } public override int Read( byte[] buffer, int offset, int count ) { long bytesRead = ValueUtilsSmi.GetBytesInternal( _sink, _getters, _ordinal, _metaData, _readPosition, buffer, offset, count, false ); _readPosition += bytesRead; return checked( (int) bytesRead ); } public override void Write( byte[] buffer, int offset, int count ) { throw SQL.StreamWriteNotSupported(); } } } // 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
- IgnoreFlushAndCloseStream.cs
- JoinSymbol.cs
- XmlEncodedRawTextWriter.cs
- TextRunTypographyProperties.cs
- LinqDataSourceStatusEventArgs.cs
- ConfigXmlCDataSection.cs
- AttachedPropertyBrowsableAttribute.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- RemotingConfigParser.cs
- ThumbButtonInfo.cs
- ErrorWrapper.cs
- RoutedEventHandlerInfo.cs
- CalculatedColumn.cs
- WebPartRestoreVerb.cs
- ScrollContentPresenter.cs
- Base64Encoding.cs
- ExternalDataExchangeService.cs
- DataGridTable.cs
- AnimationException.cs
- SoapMessage.cs
- ImmutablePropertyDescriptorGridEntry.cs
- ResumeStoryboard.cs
- LicenseProviderAttribute.cs
- XmlChoiceIdentifierAttribute.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- SymLanguageType.cs
- DoubleCollection.cs
- SortExpressionBuilder.cs
- RIPEMD160.cs
- OracleBinary.cs
- FeedUtils.cs
- SchemaTableColumn.cs
- HandlerBase.cs
- WebPartHeaderCloseVerb.cs
- PolicyStatement.cs
- FormatterConverter.cs
- TextBox.cs
- _RequestLifetimeSetter.cs
- XmlIlGenerator.cs
- InputProcessorProfilesLoader.cs
- PlainXmlSerializer.cs
- ProfileParameter.cs
- BrushValueSerializer.cs
- DocumentPageTextView.cs
- Attributes.cs
- PlaceHolder.cs
- DataSourceXmlSerializer.cs
- ItemContainerGenerator.cs
- HebrewCalendar.cs
- TreeBuilderXamlTranslator.cs
- SortExpressionBuilder.cs
- PropertyRecord.cs
- PriorityQueue.cs
- DbConvert.cs
- SmiRecordBuffer.cs
- WebPartZone.cs
- ReadOnlyCollection.cs
- DesignerLinkAdapter.cs
- DataSourceHelper.cs
- ReverseInheritProperty.cs
- securitymgrsite.cs
- AspCompat.cs
- ListViewItem.cs
- SqlSupersetValidator.cs
- XamlPathDataSerializer.cs
- BitmapEffectDrawingContextState.cs
- BufferAllocator.cs
- SByteConverter.cs
- DataGridViewAdvancedBorderStyle.cs
- PrinterResolution.cs
- ObjectFullSpanRewriter.cs
- ArrayList.cs
- MimeMultiPart.cs
- SessionStateUtil.cs
- XmlDocument.cs
- TextBoxBase.cs
- HttpApplicationStateBase.cs
- OleDbSchemaGuid.cs
- RangeValidator.cs
- ScrollData.cs
- HostSecurityManager.cs
- ClientTargetSection.cs
- GenericsNotImplementedException.cs
- PeerTransportBindingElement.cs
- DPAPIProtectedConfigurationProvider.cs
- ColumnMapCopier.cs
- Stroke.cs
- MenuItemBinding.cs
- UnaryExpression.cs
- TrustManager.cs
- CodeTypeReferenceExpression.cs
- PersonalizationEntry.cs
- StateItem.cs
- Int64AnimationUsingKeyFrames.cs
- _RequestCacheProtocol.cs
- SerializationFieldInfo.cs
- MiniAssembly.cs
- CharacterShapingProperties.cs
- PriorityRange.cs
- InputScopeAttribute.cs