Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Data / System / Data / Sql / SqlTriggerAttribute.cs / 1305376 / 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] public 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. //------------------------------------------------------------------------------ //// 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] public 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
- HuffCodec.cs
- DeclarativeExpressionConditionDeclaration.cs
- PenLineCapValidation.cs
- LinearGradientBrush.cs
- TextSchema.cs
- ChangeInterceptorAttribute.cs
- TaiwanLunisolarCalendar.cs
- METAHEADER.cs
- Math.cs
- OutputCacheSettings.cs
- PagePropertiesChangingEventArgs.cs
- glyphs.cs
- EntityDataSourceChangingEventArgs.cs
- FocusTracker.cs
- SqlGenericUtil.cs
- DataTableClearEvent.cs
- DescendentsWalkerBase.cs
- RSAProtectedConfigurationProvider.cs
- XamlSerializerUtil.cs
- MonikerUtility.cs
- OpCellTreeNode.cs
- StandardToolWindows.cs
- ReadOnlyNameValueCollection.cs
- RectangleHotSpot.cs
- InfoCardAsymmetricCrypto.cs
- WindowsProgressbar.cs
- Menu.cs
- SHA384Managed.cs
- PageClientProxyGenerator.cs
- MethodAccessException.cs
- FtpWebRequest.cs
- AstNode.cs
- CaseInsensitiveComparer.cs
- WorkflowTransactionService.cs
- WorkflowOwnershipException.cs
- CodeGotoStatement.cs
- DataKeyArray.cs
- LocalBuilder.cs
- SourceChangedEventArgs.cs
- EqualityComparer.cs
- EventLogPermission.cs
- DesignerCategoryAttribute.cs
- Dynamic.cs
- ApplicationInterop.cs
- Html32TextWriter.cs
- PageContentAsyncResult.cs
- ResolveDuplex11AsyncResult.cs
- WebPartConnectionsConfigureVerb.cs
- NodeInfo.cs
- TdsParser.cs
- SystemIPInterfaceStatistics.cs
- DefaultWorkflowSchedulerService.cs
- columnmapkeybuilder.cs
- XmlSecureResolver.cs
- RegexCode.cs
- CodeGeneratorOptions.cs
- BrushMappingModeValidation.cs
- EntityProviderServices.cs
- EncoderExceptionFallback.cs
- EntityReference.cs
- LockCookie.cs
- FixedTextSelectionProcessor.cs
- Matrix3DStack.cs
- ContractSearchPattern.cs
- Baml2006Reader.cs
- Label.cs
- WindowsTokenRoleProvider.cs
- RequestCache.cs
- StrongNameUtility.cs
- SortExpressionBuilder.cs
- SparseMemoryStream.cs
- XmlAnyAttributeAttribute.cs
- GenerateTemporaryTargetAssembly.cs
- StrokeSerializer.cs
- ActivitySurrogateSelector.cs
- GeometryDrawing.cs
- MissingManifestResourceException.cs
- UserControl.cs
- StylusSystemGestureEventArgs.cs
- PropertyEmitterBase.cs
- Win32KeyboardDevice.cs
- DispatchWrapper.cs
- DataServiceRequestException.cs
- FormDesigner.cs
- TextRenderer.cs
- DragDeltaEventArgs.cs
- PermissionSetEnumerator.cs
- DataGridViewRow.cs
- DivideByZeroException.cs
- SqlRemoveConstantOrderBy.cs
- PnrpPeerResolverElement.cs
- FileDataSourceCache.cs
- FontFamily.cs
- HandledEventArgs.cs
- CallContext.cs
- UriParserTemplates.cs
- TransformCryptoHandle.cs
- PatternMatcher.cs
- SingleTagSectionHandler.cs
- Animatable.cs