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
- odbcmetadatacolumnnames.cs
- SafeHandles.cs
- PublisherIdentityPermission.cs
- StringUtil.cs
- SqlExpander.cs
- ControlBuilderAttribute.cs
- DateTimeConstantAttribute.cs
- LoginAutoFormat.cs
- SerializationHelper.cs
- DetailsViewPageEventArgs.cs
- TypedTableBaseExtensions.cs
- SqlRowUpdatingEvent.cs
- NamespaceQuery.cs
- SqlInfoMessageEvent.cs
- ConfigXmlComment.cs
- ContentPresenter.cs
- RectangleGeometry.cs
- GC.cs
- Translator.cs
- MimeImporter.cs
- ServicePointManagerElement.cs
- CachedFontFamily.cs
- MultiTrigger.cs
- ValueSerializerAttribute.cs
- IteratorDescriptor.cs
- ContentFileHelper.cs
- followingquery.cs
- DisableDpiAwarenessAttribute.cs
- X509CertificateCollection.cs
- SafeCryptoHandles.cs
- XPathException.cs
- DesignerOptionService.cs
- InkCanvasSelection.cs
- XmlIncludeAttribute.cs
- SimpleType.cs
- LineBreakRecord.cs
- DataServiceExpressionVisitor.cs
- ControlEvent.cs
- DeploymentSectionCache.cs
- LocatorManager.cs
- EntityViewGenerationConstants.cs
- DataGridViewControlCollection.cs
- OutputCacheProfile.cs
- SettingsPropertyCollection.cs
- FileRecordSequenceCompletedAsyncResult.cs
- RegisteredScript.cs
- XmlSchemaType.cs
- DebugControllerThread.cs
- BindableTemplateBuilder.cs
- PipelineDeploymentState.cs
- PrtCap_Public_Simple.cs
- OAVariantLib.cs
- SessionPageStateSection.cs
- SortedDictionary.cs
- ViewLoader.cs
- CollectionBase.cs
- DelegatingConfigHost.cs
- Imaging.cs
- PrintControllerWithStatusDialog.cs
- BackStopAuthenticationModule.cs
- WebResponse.cs
- TargetControlTypeCache.cs
- DetailsViewPageEventArgs.cs
- PassportIdentity.cs
- ConnectionProviderAttribute.cs
- PassportPrincipal.cs
- XmlStreamStore.cs
- CatchBlock.cs
- UrlPath.cs
- TextServicesDisplayAttribute.cs
- CryptoStream.cs
- SynchronizationLockException.cs
- XmlSerializableServices.cs
- UserPersonalizationStateInfo.cs
- SafeNativeMethodsCLR.cs
- ReferencedAssembly.cs
- RestHandler.cs
- TextServicesProperty.cs
- WebMethodAttribute.cs
- EntityDataSourceChangedEventArgs.cs
- DateTimeFormat.cs
- WebPartPersonalization.cs
- MediaTimeline.cs
- MailAddress.cs
- XmlnsDictionary.cs
- DLinqDataModelProvider.cs
- FormViewUpdateEventArgs.cs
- CapabilitiesUse.cs
- ProxyManager.cs
- IndentTextWriter.cs
- SqlWorkflowInstanceStoreLock.cs
- IndicCharClassifier.cs
- SqlDataSource.cs
- Cursors.cs
- RestHandlerFactory.cs
- DataViewSetting.cs
- JavaScriptObjectDeserializer.cs
- LayoutExceptionEventArgs.cs
- PluralizationServiceUtil.cs
- LinqToSqlWrapper.cs