Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Data / System / Data / SqlClient / SqlNotificationEventArgs.cs / 1 / SqlNotificationEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //[....] //[....] //----------------------------------------------------------------------------- namespace System.Data.SqlClient { using System; using System.ComponentModel; using System.Collections; using System.Data; #if WINFSInternalOnly internal #else public #endif 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. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UnhandledExceptionEventArgs.cs
- PathData.cs
- FormClosingEvent.cs
- ArgumentException.cs
- HashCodeCombiner.cs
- Form.cs
- SponsorHelper.cs
- PinnedBufferMemoryStream.cs
- ProviderCollection.cs
- CustomExpression.cs
- PropertyToken.cs
- HttpResponseInternalWrapper.cs
- TextWriterTraceListener.cs
- RelationalExpressions.cs
- DocobjHost.cs
- TTSEvent.cs
- WebServiceMethodData.cs
- XmlChildNodes.cs
- FixedTextSelectionProcessor.cs
- ValidationErrorEventArgs.cs
- SiteMapDataSourceDesigner.cs
- QueryMath.cs
- Application.cs
- AppModelKnownContentFactory.cs
- LoginName.cs
- XsltContext.cs
- WizardPanel.cs
- HeaderElement.cs
- GeometryCombineModeValidation.cs
- ListDataBindEventArgs.cs
- DynamicVirtualDiscoSearcher.cs
- StickyNoteHelper.cs
- BuildDependencySet.cs
- SourceFileBuildProvider.cs
- IProducerConsumerCollection.cs
- Win32Native.cs
- Misc.cs
- CompositeFontInfo.cs
- DiffuseMaterial.cs
- TextCharacters.cs
- EntitySqlQueryCacheEntry.cs
- ErrorEventArgs.cs
- AttributeCollection.cs
- NetworkInterface.cs
- RTLAwareMessageBox.cs
- SqlTriggerAttribute.cs
- OperationContext.cs
- ProcessingInstructionAction.cs
- PerformanceCounter.cs
- Dump.cs
- TextRangeEdit.cs
- DoubleLinkList.cs
- _ListenerRequestStream.cs
- ObjectItemLoadingSessionData.cs
- AnimationException.cs
- LineBreak.cs
- PreProcessInputEventArgs.cs
- EntityDataSource.cs
- RowParagraph.cs
- HttpCookieCollection.cs
- UpdatePanel.cs
- SmtpMail.cs
- ListArgumentProvider.cs
- CheckableControlBaseAdapter.cs
- DebugInfo.cs
- ClickablePoint.cs
- PointCollectionConverter.cs
- TcpClientSocketManager.cs
- ValueTypeFixupInfo.cs
- SmiRequestExecutor.cs
- AspCompat.cs
- ObjectCache.cs
- documentsequencetextcontainer.cs
- PropertyChangingEventArgs.cs
- DispatcherExceptionEventArgs.cs
- InlineObject.cs
- BitVector32.cs
- PowerStatus.cs
- SqlServices.cs
- UserControlDocumentDesigner.cs
- ObjectDataSourceMethodEditor.cs
- DataGridViewRowsRemovedEventArgs.cs
- StylusPointPropertyInfo.cs
- ErrorFormatter.cs
- MachineKeyConverter.cs
- PageBreakRecord.cs
- NameSpaceExtractor.cs
- MasterPageParser.cs
- GeometryDrawing.cs
- MetabaseServerConfig.cs
- RtfControls.cs
- BitVector32.cs
- ExtensionQuery.cs
- FixedDocumentPaginator.cs
- OracleBoolean.cs
- MailMessage.cs
- XmlSchemaInclude.cs
- MouseOverProperty.cs
- XMLSchema.cs
- XmlValidatingReader.cs