Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Data / System / Data / SqlClient / SqlNotificationEventArgs.cs / 1305376 / SqlNotificationEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data.SqlClient { using System; using System.ComponentModel; using System.Collections; using System.Data; public class SqlNotificationEventArgs : EventArgs { private SqlNotificationType _type; private SqlNotificationInfo _info; private SqlNotificationSource _source; public SqlNotificationEventArgs(SqlNotificationType type, SqlNotificationInfo info, SqlNotificationSource source) { _info = info; _source = source; _type = type; } public SqlNotificationType Type { get { return _type; } } public SqlNotificationInfo Info { get { return _info; } } public SqlNotificationSource Source { get { return _source; } } internal static SqlNotificationEventArgs NotifyError = new SqlNotificationEventArgs(SqlNotificationType.Subscribe, SqlNotificationInfo.Error, SqlNotificationSource.Object); } } // 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
- InteropEnvironment.cs
- SecurityTokenParameters.cs
- ProcessThread.cs
- BinaryQueryOperator.cs
- CapabilitiesPattern.cs
- UIElementParaClient.cs
- CategoryEditor.cs
- SchemaTableOptionalColumn.cs
- ZipIOCentralDirectoryDigitalSignature.cs
- SHA256Managed.cs
- DecimalSumAggregationOperator.cs
- ConfigurationFileMap.cs
- StrongTypingException.cs
- WebPartDisplayModeEventArgs.cs
- PtsHost.cs
- VariableBinder.cs
- EditorPartCollection.cs
- PageRequestManager.cs
- ConsoleKeyInfo.cs
- NamespaceExpr.cs
- Helpers.cs
- AffineTransform3D.cs
- FixedSOMTextRun.cs
- EntityDataSourceWizardForm.cs
- SrgsDocumentParser.cs
- CurrentChangingEventArgs.cs
- Stroke.cs
- SrgsDocument.cs
- DataGridComboBoxColumn.cs
- LinkTarget.cs
- ButtonBase.cs
- HMACSHA1.cs
- _FixedSizeReader.cs
- ToolboxItem.cs
- odbcmetadatacolumnnames.cs
- SymbolEqualComparer.cs
- RadioButton.cs
- XmlAttributeProperties.cs
- odbcmetadatafactory.cs
- ToolBarTray.cs
- NetNamedPipeSecurityElement.cs
- ForeignConstraint.cs
- OracleConnectionFactory.cs
- LinqDataSourceValidationException.cs
- DrawingVisualDrawingContext.cs
- XmlCharacterData.cs
- _NestedSingleAsyncResult.cs
- TypeAccessException.cs
- HandlerMappingMemo.cs
- AuthenticationService.cs
- _FtpDataStream.cs
- MonthChangedEventArgs.cs
- HttpListenerRequest.cs
- RealizationContext.cs
- DeclaredTypeElementCollection.cs
- SoapFault.cs
- DirectionalLight.cs
- WebBrowserUriTypeConverter.cs
- BinaryParser.cs
- RC2CryptoServiceProvider.cs
- RoleServiceManager.cs
- AlternateViewCollection.cs
- HeaderUtility.cs
- Cursor.cs
- ScrollItemPattern.cs
- PeerCredentialElement.cs
- WhitespaceReader.cs
- AsymmetricSignatureFormatter.cs
- FieldCollectionEditor.cs
- CalculatedColumn.cs
- DataPagerFieldCollection.cs
- ZipIOCentralDirectoryBlock.cs
- FixedTextBuilder.cs
- SchemaImporterExtensionElementCollection.cs
- BufferAllocator.cs
- DataGridRelationshipRow.cs
- CodeArrayCreateExpression.cs
- CompositionTarget.cs
- BeginEvent.cs
- IApplicationTrustManager.cs
- AlphabetConverter.cs
- DependencyPropertyDescriptor.cs
- PeerNameResolver.cs
- FileLevelControlBuilderAttribute.cs
- MethodMessage.cs
- PropertyPushdownHelper.cs
- ParameterReplacerVisitor.cs
- HuffmanTree.cs
- EmbeddedObject.cs
- BinaryMessageEncodingElement.cs
- ZipArchive.cs
- CodeBlockBuilder.cs
- SessionStateModule.cs
- XmlArrayItemAttribute.cs
- WorkflowTransactionOptions.cs
- OleStrCAMarshaler.cs
- RuntimeConfig.cs
- FileDataSourceCache.cs
- BypassElement.cs
- EntityDataSourceReferenceGroup.cs