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
- TPLETWProvider.cs
- XamlTypeMapperSchemaContext.cs
- CodeAttributeDeclaration.cs
- Grid.cs
- KeyInstance.cs
- ManagementClass.cs
- DataGridViewBand.cs
- ActiveXHost.cs
- TemplateKey.cs
- XmlQualifiedNameTest.cs
- InputLangChangeRequestEvent.cs
- LayoutSettings.cs
- MaterialGroup.cs
- StringStorage.cs
- GridViewSortEventArgs.cs
- _HeaderInfoTable.cs
- DBCommand.cs
- GroupedContextMenuStrip.cs
- TreeNodeCollectionEditor.cs
- ToolStripPanelRow.cs
- SecurityChannelListener.cs
- SqlStatistics.cs
- MultiSelector.cs
- GregorianCalendarHelper.cs
- DocumentPaginator.cs
- XmlProcessingInstruction.cs
- ParagraphVisual.cs
- IndentTextWriter.cs
- TabletDevice.cs
- AssemblyFilter.cs
- ProviderConnectionPoint.cs
- Style.cs
- SignedXml.cs
- SingleAnimationUsingKeyFrames.cs
- AssemblyInfo.cs
- HtmlForm.cs
- WindowsEditBox.cs
- ConcurrencyMode.cs
- CanonicalFormWriter.cs
- DataGridViewComboBoxColumn.cs
- ImageConverter.cs
- ASCIIEncoding.cs
- KnownBoxes.cs
- DocumentOrderComparer.cs
- _SslSessionsCache.cs
- XmlILOptimizerVisitor.cs
- ColorDialog.cs
- PrivilegedConfigurationManager.cs
- BufferedGraphicsContext.cs
- IDispatchConstantAttribute.cs
- WebSysDescriptionAttribute.cs
- SchemaNames.cs
- RowToFieldTransformer.cs
- DrawListViewColumnHeaderEventArgs.cs
- HtmlWindowCollection.cs
- Size3DConverter.cs
- ConfigurationElementProperty.cs
- Typography.cs
- WebMessageEncoderFactory.cs
- DataGridViewRowsRemovedEventArgs.cs
- PrintController.cs
- PagerSettings.cs
- RegistryPermission.cs
- WindowsStreamSecurityBindingElement.cs
- AttributeUsageAttribute.cs
- LabelEditEvent.cs
- WindowPatternIdentifiers.cs
- TraceSection.cs
- XmlAutoDetectWriter.cs
- storepermissionattribute.cs
- WebPartCatalogCloseVerb.cs
- ResourceSet.cs
- PerfService.cs
- PtsPage.cs
- TypedDataSetSchemaImporterExtensionFx35.cs
- CodeGeneratorOptions.cs
- DataMember.cs
- ExternalException.cs
- dtdvalidator.cs
- DataGridCellAutomationPeer.cs
- Base64Encoding.cs
- ButtonRenderer.cs
- GroupItemAutomationPeer.cs
- MessageAction.cs
- ListViewItem.cs
- ImpersonateTokenRef.cs
- XmlSchemaAnnotation.cs
- VariableQuery.cs
- SafeArrayTypeMismatchException.cs
- RoutedEvent.cs
- UnconditionalPolicy.cs
- RowType.cs
- VirtualPathProvider.cs
- StringFormat.cs
- TextSimpleMarkerProperties.cs
- ConfigurationFileMap.cs
- Utils.cs
- TextProperties.cs
- ContextMenuStrip.cs
- XmlSchemaAny.cs