Code:
/ FX-1434 / FX-1434 / 1.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
- MetadataItem_Static.cs
- DocumentSchemaValidator.cs
- AttachedAnnotation.cs
- ToolStripPanel.cs
- ProxyElement.cs
- RuleSetCollection.cs
- MatrixIndependentAnimationStorage.cs
- safePerfProviderHandle.cs
- SubclassTypeValidator.cs
- StateDesigner.Helpers.cs
- DefaultTextStore.cs
- CompoundFileIOPermission.cs
- HtmlAnchor.cs
- HMACSHA256.cs
- TableDesigner.cs
- PropertyIdentifier.cs
- SystemColors.cs
- ValueUnavailableException.cs
- DataDocumentXPathNavigator.cs
- CodeCatchClauseCollection.cs
- DocumentViewerAutomationPeer.cs
- ResourceDescriptionAttribute.cs
- LZCodec.cs
- QilInvoke.cs
- CompiledIdentityConstraint.cs
- ChineseLunisolarCalendar.cs
- LogicalExpressionEditor.cs
- GrammarBuilderRuleRef.cs
- CustomAttributeFormatException.cs
- GroupQuery.cs
- SequenceQuery.cs
- CodeCommentStatement.cs
- MarkupCompilePass2.cs
- IconHelper.cs
- AssemblyUtil.cs
- TreeNodeBinding.cs
- QueueProcessor.cs
- ArrayList.cs
- HostSecurityManager.cs
- AnnouncementEndpoint.cs
- WindowsFormsHostAutomationPeer.cs
- SHA384.cs
- DataListGeneralPage.cs
- RelationshipSet.cs
- RawStylusInputReport.cs
- SymmetricCryptoHandle.cs
- ListViewSelectEventArgs.cs
- Deserializer.cs
- MimeFormReflector.cs
- ReadOnlyDataSourceView.cs
- CreateUserErrorEventArgs.cs
- BCLDebug.cs
- AttributeProviderAttribute.cs
- parserscommon.cs
- DbTransaction.cs
- ObjectStorage.cs
- AssemblyAttributes.cs
- NativeMethodsCLR.cs
- Control.cs
- LocatorGroup.cs
- JsonStringDataContract.cs
- ToolStripItemRenderEventArgs.cs
- PagerSettings.cs
- AlgoModule.cs
- _ListenerAsyncResult.cs
- SuppressIldasmAttribute.cs
- PassportPrincipal.cs
- DefaultValidator.cs
- FixedPageStructure.cs
- ThreadExceptionEvent.cs
- Util.cs
- WebPartsPersonalization.cs
- BitSet.cs
- FormViewInsertEventArgs.cs
- ReliableSessionBindingElementImporter.cs
- SerializationInfoEnumerator.cs
- BitmapEffectState.cs
- HandoffBehavior.cs
- BrowserDefinitionCollection.cs
- Literal.cs
- SQLChars.cs
- FamilyMapCollection.cs
- IgnoreDeviceFilterElement.cs
- HMACSHA256.cs
- OutputCacheSettingsSection.cs
- Hex.cs
- WebPartConnectionsCloseVerb.cs
- DataListCommandEventArgs.cs
- AsyncCodeActivity.cs
- MethodBody.cs
- StorageSetMapping.cs
- WebScriptEnablingElement.cs
- CounterSetInstance.cs
- ClientRuntimeConfig.cs
- ByteStreamMessageUtility.cs
- SendActivityValidator.cs
- FixedHyperLink.cs
- XmlWellformedWriter.cs
- TableParaClient.cs
- SqlTransaction.cs