Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Data / Microsoft / SqlServer / Server / SmiContext.cs / 1 / SmiContext.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //----------------------------------------------------------------------------- namespace Microsoft.SqlServer.Server { using System; using System.Data; using System.Data.Sql; using System.Data.SqlTypes; using System.Security.Principal; // NOTE: connection, transaction and context pipe operations could be // encapsulated in their own classes, and should if they get complex // (transaction is borderline at this point). internal abstract class SmiContext { internal abstract event EventHandler OutOfScope; internal abstract SmiConnection ContextConnection { get; } internal abstract long ContextTransactionId { get; } internal abstract System.Transactions.Transaction ContextTransaction { get; } internal abstract bool HasContextPipe { get; } internal abstract WindowsIdentity WindowsIdentity { get; } internal abstract SmiRecordBuffer CreateRecordBuffer ( SmiExtendedMetaData[] columnMetaData, // Extended metadata because it requires names, udttypename and xmlschemaname ignored SmiEventSink eventSink ); internal abstract SmiRequestExecutor CreateRequestExecutor ( string commandText, CommandType commandType, SmiParameterMetaData[] parameterMetaData, SmiEventSink eventSink ); // internal abstract object GetContextValue ( int key ); internal abstract void GetTriggerInfo ( SmiEventSink eventSink, out bool[] columnsUpdated, out TriggerAction action, out SqlXml eventInstanceData ); internal abstract void SendMessageToPipe( string message, SmiEventSink eventSink ); internal abstract void SendResultsStartToPipe( SmiRecordBuffer recordBuffer, SmiEventSink eventSink ); internal abstract void SendResultsRowToPipe( SmiRecordBuffer recordBuffer, SmiEventSink eventSink ); internal abstract void SendResultsEndToPipe( SmiRecordBuffer recordBuffer, SmiEventSink eventSink ); internal abstract void SetContextValue ( int key, object value ); // Scratch LOB storage region internal virtual SmiStream GetScratchStream( SmiEventSink sink ) { // Adding as of V3 // Implement body with throw because there are only a couple of ways to get to this code: // 1) Client is calling this method even though the server negotiated for V2- and hasn't implemented V3 yet. // 2) Server didn't implement V3, but negotiated V3+. System.Data.Common.ADP.InternalError( System.Data.Common.ADP.InternalErrorCode.UnimplementedSMIMethod ); return null; } } } // 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; using System.Data.Sql; using System.Data.SqlTypes; using System.Security.Principal; // NOTE: connection, transaction and context pipe operations could be // encapsulated in their own classes, and should if they get complex // (transaction is borderline at this point). internal abstract class SmiContext { internal abstract event EventHandler OutOfScope; internal abstract SmiConnection ContextConnection { get; } internal abstract long ContextTransactionId { get; } internal abstract System.Transactions.Transaction ContextTransaction { get; } internal abstract bool HasContextPipe { get; } internal abstract WindowsIdentity WindowsIdentity { get; } internal abstract SmiRecordBuffer CreateRecordBuffer ( SmiExtendedMetaData[] columnMetaData, // Extended metadata because it requires names, udttypename and xmlschemaname ignored SmiEventSink eventSink ); internal abstract SmiRequestExecutor CreateRequestExecutor ( string commandText, CommandType commandType, SmiParameterMetaData[] parameterMetaData, SmiEventSink eventSink ); // internal abstract object GetContextValue ( int key ); internal abstract void GetTriggerInfo ( SmiEventSink eventSink, out bool[] columnsUpdated, out TriggerAction action, out SqlXml eventInstanceData ); internal abstract void SendMessageToPipe( string message, SmiEventSink eventSink ); internal abstract void SendResultsStartToPipe( SmiRecordBuffer recordBuffer, SmiEventSink eventSink ); internal abstract void SendResultsRowToPipe( SmiRecordBuffer recordBuffer, SmiEventSink eventSink ); internal abstract void SendResultsEndToPipe( SmiRecordBuffer recordBuffer, SmiEventSink eventSink ); internal abstract void SetContextValue ( int key, object value ); // Scratch LOB storage region internal virtual SmiStream GetScratchStream( SmiEventSink sink ) { // Adding as of V3 // Implement body with throw because there are only a couple of ways to get to this code: // 1) Client is calling this method even though the server negotiated for V2- and hasn't implemented V3 yet. // 2) Server didn't implement V3, but negotiated V3+. System.Data.Common.ADP.InternalError( System.Data.Common.ADP.InternalErrorCode.UnimplementedSMIMethod ); return null; } } } // 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
- TrackingValidationObjectDictionary.cs
- DataGridViewButtonCell.cs
- NameValueConfigurationElement.cs
- LicFileLicenseProvider.cs
- DataGridViewLinkColumn.cs
- Operators.cs
- SafeViewOfFileHandle.cs
- PeerChannelFactory.cs
- Setter.cs
- StorageMappingFragment.cs
- DataRelationPropertyDescriptor.cs
- SystemColorTracker.cs
- _ListenerAsyncResult.cs
- BoundsDrawingContextWalker.cs
- DatatypeImplementation.cs
- DefaultSerializationProviderAttribute.cs
- UserPreferenceChangedEventArgs.cs
- WinEventQueueItem.cs
- UIElement3D.cs
- ItemCheckedEvent.cs
- DependencyPropertyValueSerializer.cs
- UnmanagedMemoryStreamWrapper.cs
- EnterpriseServicesHelper.cs
- KeyValueConfigurationElement.cs
- TransformConverter.cs
- NumericUpDown.cs
- AttributeCollection.cs
- NamespaceDisplay.xaml.cs
- FontClient.cs
- RadialGradientBrush.cs
- DataViewManagerListItemTypeDescriptor.cs
- Bidi.cs
- Misc.cs
- HostProtectionException.cs
- BehaviorEditorPart.cs
- ForEachAction.cs
- AssociationTypeEmitter.cs
- XmlProcessingInstruction.cs
- ISAPIWorkerRequest.cs
- ListView.cs
- DirectoryGroupQuery.cs
- XMLUtil.cs
- KeyboardDevice.cs
- ControlAdapter.cs
- IPEndPointCollection.cs
- ContainerVisual.cs
- Container.cs
- ListView.cs
- ILGenerator.cs
- SharingService.cs
- SignatureDescription.cs
- InputMethodStateTypeInfo.cs
- UnknownBitmapEncoder.cs
- AssemblyFilter.cs
- ClientSponsor.cs
- FlagsAttribute.cs
- InteropBitmapSource.cs
- WindowsTokenRoleProvider.cs
- SourceCollection.cs
- PathStreamGeometryContext.cs
- Overlapped.cs
- MouseGestureConverter.cs
- PopupRoot.cs
- OdbcConnectionStringbuilder.cs
- EnumMemberAttribute.cs
- AnnotationStore.cs
- mediaclock.cs
- CompilerParameters.cs
- PrimitiveType.cs
- TreeNode.cs
- Line.cs
- MergeEnumerator.cs
- ToolStripOverflowButton.cs
- SoapAttributes.cs
- Brush.cs
- SafeEventHandle.cs
- OracleMonthSpan.cs
- AnonymousIdentificationSection.cs
- OdbcConnectionFactory.cs
- AVElementHelper.cs
- PointCollection.cs
- DataIdProcessor.cs
- StrokeDescriptor.cs
- ToolStripItem.cs
- ConfigXmlComment.cs
- StylusEditingBehavior.cs
- ObservableDictionary.cs
- ApplicationContext.cs
- EntityDataSourceEntityTypeFilterItem.cs
- DataControlFieldTypeEditor.cs
- MembershipPasswordException.cs
- SessionStateUtil.cs
- ImpersonationOption.cs
- ItemAutomationPeer.cs
- XmlElementList.cs
- MemberPath.cs
- AssemblyResourceLoader.cs
- FormatSelectingMessageInspector.cs
- XmlSchemaValidator.cs
- Restrictions.cs