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
- initElementDictionary.cs
- PolicyChain.cs
- SystemKeyConverter.cs
- NegatedCellConstant.cs
- ScriptResourceAttribute.cs
- AlphabeticalEnumConverter.cs
- UnsafeNativeMethods.cs
- BookmarkScopeInfo.cs
- WebPartHelpVerb.cs
- Win32SafeHandles.cs
- DockPattern.cs
- CharacterMetrics.cs
- ConfigPathUtility.cs
- WebBaseEventKeyComparer.cs
- SqlDependency.cs
- DetailsViewDesigner.cs
- FamilyMapCollection.cs
- AliasGenerator.cs
- FactoryMaker.cs
- LoginView.cs
- AttributeQuery.cs
- SelectionItemPattern.cs
- FrameworkTemplate.cs
- AmbientValueAttribute.cs
- CopyOnWriteList.cs
- Trigger.cs
- _SslSessionsCache.cs
- XsltCompileContext.cs
- AppDomainProtocolHandler.cs
- DashStyle.cs
- DataTableMappingCollection.cs
- PageWrapper.cs
- PtsHost.cs
- EnumerableRowCollectionExtensions.cs
- RSAOAEPKeyExchangeDeformatter.cs
- DataGridComboBoxColumn.cs
- PrimitiveXmlSerializers.cs
- ActivityBuilder.cs
- DataRelationPropertyDescriptor.cs
- GlyphsSerializer.cs
- RoleManagerModule.cs
- ShaperBuffers.cs
- TextDecorationCollectionConverter.cs
- DropDownList.cs
- ApplicationFileCodeDomTreeGenerator.cs
- DataServiceHostFactory.cs
- DocumentCollection.cs
- VisualTarget.cs
- FileDetails.cs
- ExpressionBindings.cs
- GridViewCellAutomationPeer.cs
- AlgoModule.cs
- PropertySourceInfo.cs
- AttributeEmitter.cs
- EmptyReadOnlyDictionaryInternal.cs
- XamlStream.cs
- autovalidator.cs
- Message.cs
- Polyline.cs
- ProbeMatchesCD1.cs
- RightsManagementPermission.cs
- ImageAnimator.cs
- ContentFileHelper.cs
- DataServiceHostFactory.cs
- MaskedTextBoxDesigner.cs
- SerializerDescriptor.cs
- ProgressBarBrushConverter.cs
- ControlAdapter.cs
- CustomErrorsSectionWrapper.cs
- AlternateViewCollection.cs
- BuildProviderAppliesToAttribute.cs
- SqlDelegatedTransaction.cs
- NumberAction.cs
- IsolationInterop.cs
- AsyncCodeActivityContext.cs
- RuleSettings.cs
- TreeNodeCollection.cs
- CustomValidator.cs
- SqlDelegatedTransaction.cs
- WindowsToolbarAsMenu.cs
- ChameleonKey.cs
- PopupRootAutomationPeer.cs
- ParameterCollection.cs
- DirectoryNotFoundException.cs
- XPathChildIterator.cs
- StoreContentChangedEventArgs.cs
- VisualStyleInformation.cs
- PiiTraceSource.cs
- ListMarkerSourceInfo.cs
- TrackingRecord.cs
- IndentedTextWriter.cs
- AnnotationComponentManager.cs
- NativeRecognizer.cs
- BreakSafeBase.cs
- VirtualDirectoryMappingCollection.cs
- AnnotationResource.cs
- CodeDirectiveCollection.cs
- EventLogSession.cs
- SqlClientMetaDataCollectionNames.cs
- BamlBinaryReader.cs