Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Data / System / Data / Sql / SqlTriggerAttribute.cs / 1 / SqlTriggerAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All Rights Reserved. // Information Contained Herein is Proprietary and Confidential. // //[....] //[....] //daltudov //[....] //beysims //[....] //vadimt //----------------------------------------------------------------------------- using System; namespace Microsoft.SqlServer.Server { [AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false), Serializable] #if WINFSInternalOnly internal #else public #endif sealed class SqlTriggerAttribute : System.Attribute { private string m_fName; private string m_fTarget; private string m_fEvent; public SqlTriggerAttribute() { // default values m_fName = null; m_fTarget = null; m_fEvent = null; } public string Name { get { return m_fName; } set { m_fName = value; } } public string Target { get { return m_fTarget; } set { m_fTarget = value; } } public string Event { get { return m_fEvent; } set { m_fEvent = value; } } } } // 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
- UnSafeCharBuffer.cs
- StringFreezingAttribute.cs
- WsdlBuildProvider.cs
- DoubleAnimationUsingKeyFrames.cs
- BlurEffect.cs
- SqlProvider.cs
- HostingPreferredMapPath.cs
- CodeCastExpression.cs
- StylusDownEventArgs.cs
- OdbcEnvironmentHandle.cs
- sitestring.cs
- CodeAttributeDeclaration.cs
- activationcontext.cs
- DataServicePagingProviderWrapper.cs
- MarshalByValueComponent.cs
- HandlerBase.cs
- ListViewCancelEventArgs.cs
- EmissiveMaterial.cs
- WSTrust.cs
- TextInfo.cs
- RelatedEnd.cs
- SerializationObjectManager.cs
- OleServicesContext.cs
- SqlBulkCopy.cs
- ToolStripItemImageRenderEventArgs.cs
- ApplicationBuildProvider.cs
- ToolStripPanelRenderEventArgs.cs
- ScriptingProfileServiceSection.cs
- RenderContext.cs
- DecimalConverter.cs
- SqlUtil.cs
- ContextInformation.cs
- SingleAnimationBase.cs
- IndexerNameAttribute.cs
- ConfigUtil.cs
- Win32Interop.cs
- ConfigXmlText.cs
- SiteMapSection.cs
- FilterEventArgs.cs
- CompilerGlobalScopeAttribute.cs
- FileInfo.cs
- TdsParserStateObject.cs
- EntityDataSourceDesigner.cs
- XpsResourcePolicy.cs
- ServiceDiscoveryElement.cs
- ScrollData.cs
- DataControlReferenceCollection.cs
- Viewport3DAutomationPeer.cs
- Vars.cs
- DrawListViewItemEventArgs.cs
- AnimationException.cs
- AutomationPattern.cs
- ImageConverter.cs
- AttributeSetAction.cs
- HyperlinkAutomationPeer.cs
- InfoCardArgumentException.cs
- OleDbException.cs
- BookmarkList.cs
- GenericEnumerator.cs
- XmlSchemaExporter.cs
- MethodSet.cs
- Privilege.cs
- XamlHostingConfiguration.cs
- SamlSecurityTokenAuthenticator.cs
- XmlIncludeAttribute.cs
- SafeNativeMethods.cs
- SiteOfOriginPart.cs
- MessageQueuePermissionEntry.cs
- InstanceData.cs
- JournalNavigationScope.cs
- TabControlAutomationPeer.cs
- AQNBuilder.cs
- ReverseInheritProperty.cs
- PropertyTab.cs
- FolderNameEditor.cs
- _SSPISessionCache.cs
- LeafCellTreeNode.cs
- NonClientArea.cs
- SpecialNameAttribute.cs
- KeyEvent.cs
- SpecularMaterial.cs
- ColorDialog.cs
- Document.cs
- AccessViolationException.cs
- SmtpFailedRecipientException.cs
- Point4D.cs
- XmlSchemaAnyAttribute.cs
- ListView.cs
- Context.cs
- QilLoop.cs
- Image.cs
- InstanceView.cs
- CodeCastExpression.cs
- DbRetry.cs
- Invariant.cs
- _DisconnectOverlappedAsyncResult.cs
- RepeatButton.cs
- UIElement.cs
- DictionaryContent.cs
- DataFormat.cs