Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Data / System / Data / Sql / SqlProcedureAttribute.cs / 1305376 / SqlProcedureAttribute.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 SqlProcedureAttribute : System.Attribute { private string m_fName; public SqlProcedureAttribute() { // default values m_fName = null; } public string Name { get { return m_fName; } set { m_fName = 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
- HttpWriter.cs
- ColorConvertedBitmap.cs
- WindowsStartMenu.cs
- ServiceModelReg.cs
- WeakHashtable.cs
- CacheVirtualItemsEvent.cs
- NullRuntimeConfig.cs
- ViewCellSlot.cs
- HealthMonitoringSection.cs
- TimeBoundedCache.cs
- ProvidePropertyAttribute.cs
- X509SecurityToken.cs
- Match.cs
- DataExpression.cs
- FileReservationCollection.cs
- DynamicControlParameter.cs
- XamlReaderConstants.cs
- SettingsSavedEventArgs.cs
- ScrollBar.cs
- ReadOnlyHierarchicalDataSource.cs
- ProcessModelInfo.cs
- PenCursorManager.cs
- RectAnimationUsingKeyFrames.cs
- SimpleTextLine.cs
- GenericPrincipal.cs
- ThemeableAttribute.cs
- ToolStripControlHost.cs
- hresults.cs
- XmlNodeReader.cs
- CodeArrayIndexerExpression.cs
- TemplateColumn.cs
- Soap.cs
- PropertyGridView.cs
- Hex.cs
- SspiWrapper.cs
- arc.cs
- UnmanagedBitmapWrapper.cs
- WebPartAuthorizationEventArgs.cs
- DispatcherObject.cs
- QueryRewriter.cs
- DynamicControl.cs
- Int32Converter.cs
- DragStartedEventArgs.cs
- ApplicationInfo.cs
- MyContact.cs
- HelloMessageCD1.cs
- TreeViewItemAutomationPeer.cs
- PagedControl.cs
- VirtualizedItemPattern.cs
- ActiveXSite.cs
- _AuthenticationState.cs
- Wizard.cs
- BlockCollection.cs
- BinaryObjectReader.cs
- LogicalExpressionTypeConverter.cs
- HwndHost.cs
- RelationshipEndCollection.cs
- JoinSymbol.cs
- OleServicesContext.cs
- grammarelement.cs
- XmlQueryContext.cs
- DefaultBinder.cs
- TextServicesCompartmentEventSink.cs
- DataGridViewTextBoxCell.cs
- SafeUserTokenHandle.cs
- EventPrivateKey.cs
- CustomCategoryAttribute.cs
- BitmapEffectInput.cs
- MgmtConfigurationRecord.cs
- SafeProcessHandle.cs
- ConnectionPoolManager.cs
- SoapAttributes.cs
- ColorIndependentAnimationStorage.cs
- StringUtil.cs
- TriState.cs
- CompoundFileReference.cs
- PathFigure.cs
- InfoCardRSAPKCS1KeyExchangeDeformatter.cs
- HostedHttpRequestAsyncResult.cs
- EntityStoreSchemaFilterEntry.cs
- DataProviderNameConverter.cs
- PermissionSet.cs
- SystemTcpStatistics.cs
- CounterCreationDataConverter.cs
- InternalSafeNativeMethods.cs
- CounterCreationDataCollection.cs
- SBCSCodePageEncoding.cs
- CustomPopupPlacement.cs
- WebResponse.cs
- Subset.cs
- RectAnimationBase.cs
- HuffModule.cs
- WebPartHeaderCloseVerb.cs
- EventData.cs
- SQLDateTimeStorage.cs
- ColorAnimationUsingKeyFrames.cs
- DesignerHelpers.cs
- ObjectCache.cs
- FieldCollectionEditor.cs
- HttpDebugHandler.cs