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
- TiffBitmapDecoder.cs
- OleDbParameter.cs
- ToolStripPanelCell.cs
- FormViewRow.cs
- GridViewRowPresenter.cs
- UnsafeNativeMethods.cs
- Attributes.cs
- ResourcePermissionBaseEntry.cs
- DropShadowEffect.cs
- tooltip.cs
- FigureParagraph.cs
- WindowsSolidBrush.cs
- CompoundFileStorageReference.cs
- CryptoApi.cs
- Utilities.cs
- OpenTypeLayoutCache.cs
- RedistVersionInfo.cs
- FontFamilyIdentifier.cs
- HttpListenerRequestUriBuilder.cs
- ElementAction.cs
- ControllableStoryboardAction.cs
- UserControl.cs
- Rijndael.cs
- CrossSiteScriptingValidation.cs
- CompiledRegexRunnerFactory.cs
- PackUriHelper.cs
- FocusManager.cs
- WindowsImpersonationContext.cs
- CommandField.cs
- RtfNavigator.cs
- ClientData.cs
- PrintPreviewGraphics.cs
- X509ScopedServiceCertificateElementCollection.cs
- XmlAttributeOverrides.cs
- Single.cs
- OleDbRowUpdatedEvent.cs
- OperationSelectorBehavior.cs
- TemplatePagerField.cs
- SystemInformation.cs
- RegexStringValidator.cs
- SessionStateItemCollection.cs
- NavigationHelper.cs
- DocumentSequence.cs
- contentDescriptor.cs
- MemberNameValidator.cs
- SplitterCancelEvent.cs
- GroupBoxRenderer.cs
- ColumnCollection.cs
- BooleanKeyFrameCollection.cs
- DataServiceExpressionVisitor.cs
- BaseProcessor.cs
- ExtensionDataObject.cs
- Vector3dCollection.cs
- QilName.cs
- ConstraintEnumerator.cs
- ElementAction.cs
- RemotingException.cs
- ScriptingSectionGroup.cs
- IdentityNotMappedException.cs
- SQLRoleProvider.cs
- InternalRelationshipCollection.cs
- TextOnlyOutput.cs
- Crc32Helper.cs
- BinaryObjectWriter.cs
- EasingQuaternionKeyFrame.cs
- ServicePoint.cs
- DataTableTypeConverter.cs
- DataGridRow.cs
- TypeUtil.cs
- ZipIOBlockManager.cs
- ExpressionDumper.cs
- RegexTree.cs
- DataGridViewBindingCompleteEventArgs.cs
- ResourcePermissionBase.cs
- TableSectionStyle.cs
- ByteStorage.cs
- XmlExtensionFunction.cs
- SessionState.cs
- CodeGeneratorOptions.cs
- ListSourceHelper.cs
- Latin1Encoding.cs
- StreamMarshaler.cs
- InstanceCreationEditor.cs
- CodeBinaryOperatorExpression.cs
- _LoggingObject.cs
- RelationshipEntry.cs
- HitTestDrawingContextWalker.cs
- InvalidEnumArgumentException.cs
- RefreshEventArgs.cs
- GridViewDeletedEventArgs.cs
- ObjectDataProvider.cs
- PropertyPushdownHelper.cs
- CodeGotoStatement.cs
- DescriptionAttribute.cs
- IdentityNotMappedException.cs
- ToolStripComboBox.cs
- LogAppendAsyncResult.cs
- Compiler.cs
- Separator.cs
- DetailsViewUpdatedEventArgs.cs