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
- MethodCallTranslator.cs
- SQLBoolean.cs
- SimpleFileLog.cs
- XmlStreamStore.cs
- RoutedEventValueSerializer.cs
- PriorityQueue.cs
- BindingSource.cs
- CodeConstructor.cs
- CachedFontFace.cs
- ExpressionNode.cs
- NameValuePermission.cs
- KeyEvent.cs
- CaseInsensitiveHashCodeProvider.cs
- WindowsFormsLinkLabel.cs
- DataColumnChangeEvent.cs
- HostingPreferredMapPath.cs
- XmlLinkedNode.cs
- ZipIOModeEnforcingStream.cs
- SimpleType.cs
- TableSectionStyle.cs
- RepeaterItem.cs
- Int64.cs
- XmlValueConverter.cs
- XmlUtf8RawTextWriter.cs
- ImmutableCollection.cs
- MessageSecurityOverMsmq.cs
- DSASignatureFormatter.cs
- OutputCacheProfile.cs
- XmlCharType.cs
- MarshalByValueComponent.cs
- RtfControls.cs
- ChildDocumentBlock.cs
- HealthMonitoringSectionHelper.cs
- TypeRefElement.cs
- TypedReference.cs
- CompiledRegexRunnerFactory.cs
- ConfigurationElementCollection.cs
- ProfilePropertyNameValidator.cs
- TimestampInformation.cs
- StackSpiller.Bindings.cs
- XmlILConstructAnalyzer.cs
- SystemIPv4InterfaceProperties.cs
- AccessViolationException.cs
- MDIWindowDialog.cs
- CodePropertyReferenceExpression.cs
- TokenBasedSet.cs
- BamlResourceContent.cs
- WmfPlaceableFileHeader.cs
- RegularExpressionValidator.cs
- SettingsPropertyWrongTypeException.cs
- CdpEqualityComparer.cs
- AlternationConverter.cs
- PlaceHolder.cs
- XmlSchemaSimpleTypeRestriction.cs
- EntitySetDataBindingList.cs
- RequestCachingSection.cs
- TimeZone.cs
- UInt16.cs
- LinqDataSourceDisposeEventArgs.cs
- Stroke2.cs
- WinInet.cs
- StringFunctions.cs
- ExpressionBuilderContext.cs
- AttributedMetaModel.cs
- FloaterBaseParaClient.cs
- EntityDataSourceSelectingEventArgs.cs
- DBCommandBuilder.cs
- NumericPagerField.cs
- TrustLevelCollection.cs
- SettingsProviderCollection.cs
- FilterableAttribute.cs
- OneOfElement.cs
- ConfigurationSectionCollection.cs
- ExpressionPrefixAttribute.cs
- XPathScanner.cs
- ImmComposition.cs
- SequentialOutput.cs
- PropertyKey.cs
- LocationReferenceEnvironment.cs
- StrokeIntersection.cs
- DocumentsTrace.cs
- MultiView.cs
- ControlCachePolicy.cs
- AppDomain.cs
- StringConverter.cs
- COM2IProvidePropertyBuilderHandler.cs
- TreeBuilder.cs
- SchemaMapping.cs
- WorkflowServiceOperationListItem.cs
- DropShadowBitmapEffect.cs
- RSAPKCS1KeyExchangeFormatter.cs
- EntityContainerEmitter.cs
- CollectionContainer.cs
- EventLogPermissionEntryCollection.cs
- DispatchChannelSink.cs
- FormViewUpdateEventArgs.cs
- PartManifestEntry.cs
- ConfigXmlAttribute.cs
- FileStream.cs
- PtsHelper.cs