Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MasterPageBuildProvider.cs
- WinCategoryAttribute.cs
- TextDecorations.cs
- SchemaElementLookUpTableEnumerator.cs
- Main.cs
- ExpandableObjectConverter.cs
- QilStrConcatenator.cs
- RadioButtonStandardAdapter.cs
- MetadataUtil.cs
- XamlParser.cs
- ChildTable.cs
- OrderPreservingMergeHelper.cs
- SystemNetworkInterface.cs
- EntityWithChangeTrackerStrategy.cs
- GetFileNameResult.cs
- MexNamedPipeBindingCollectionElement.cs
- WmlPhoneCallAdapter.cs
- HMACSHA512.cs
- BamlCollectionHolder.cs
- RowSpanVector.cs
- EntityDataSourceContextDisposingEventArgs.cs
- DataGridViewBand.cs
- Statements.cs
- StreamUpdate.cs
- _IPv4Address.cs
- ImageUrlEditor.cs
- DataGridCell.cs
- HostedElements.cs
- OdbcRowUpdatingEvent.cs
- StreamUpgradeProvider.cs
- OdbcError.cs
- DiscoveryVersion.cs
- SchemaElementDecl.cs
- Subtree.cs
- OperandQuery.cs
- ListBoxItemWrapperAutomationPeer.cs
- XmlSerializerNamespaces.cs
- RelatedImageListAttribute.cs
- VBCodeProvider.cs
- EntityDataSourceConfigureObjectContextPanel.cs
- X509Utils.cs
- IntranetCredentialPolicy.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- ObjectDataSource.cs
- SafeThreadHandle.cs
- InstanceKeyCompleteException.cs
- HandleExceptionArgs.cs
- ChildrenQuery.cs
- ActiveXContainer.cs
- OpacityConverter.cs
- LinqDataSourceUpdateEventArgs.cs
- WindowsEditBoxRange.cs
- Context.cs
- DataTableReaderListener.cs
- bindurihelper.cs
- WebProxyScriptElement.cs
- TextServicesLoader.cs
- InfoCardKeyedHashAlgorithm.cs
- MappingSource.cs
- ByteAnimation.cs
- FamilyMapCollection.cs
- PolicyLevel.cs
- PhysicalOps.cs
- WindowCollection.cs
- TrackingMemoryStreamFactory.cs
- DashStyles.cs
- IndentTextWriter.cs
- SqlDuplicator.cs
- ImageListUtils.cs
- DataTableExtensions.cs
- InstanceCreationEditor.cs
- XmlSchemaSimpleContent.cs
- OneToOneMappingSerializer.cs
- MissingFieldException.cs
- IPipelineRuntime.cs
- ASCIIEncoding.cs
- CommonXSendMessage.cs
- Odbc32.cs
- FixedLineResult.cs
- CornerRadiusConverter.cs
- IndexObject.cs
- WebEvents.cs
- GraphicsPathIterator.cs
- SqlDependency.cs
- PageRanges.cs
- OpenTypeCommon.cs
- WebServiceFaultDesigner.cs
- DrawingContextWalker.cs
- SafeTokenHandle.cs
- Comparer.cs
- FormViewCommandEventArgs.cs
- LeafCellTreeNode.cs
- File.cs
- UnescapedXmlDiagnosticData.cs
- FileDetails.cs
- BrowserCapabilitiesFactory35.cs
- SmiEventSink.cs
- MessageSecurityOverHttp.cs
- MatrixTransform3D.cs
- IEnumerable.cs