Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / CompMod / System / ComponentModel / Design / Data / DesignerDataParameter.cs / 1 / DesignerDataParameter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.ComponentModel.Design.Data { using System; using System.Collections; using System.Data; ////// Represents a parameter of a stored procedure in a data connection. /// A collection of this type is returned from the /// DesignerStoredProcedure.Parameters property. /// public sealed class DesignerDataParameter { private DbType _dataType; private ParameterDirection _direction; private string _name; ////// public DesignerDataParameter(string name, DbType dataType, ParameterDirection direction) { _dataType = dataType; _direction = direction; _name = name; } ////// The type of the parameter. /// public DbType DataType { get { return _dataType; } } ////// The in/out semantics of the parameter. /// public ParameterDirection Direction { get { return _direction; } } ////// The name of the parameter. /// public string Name { get { return _name; } } } } // 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
- ExpressionPrinter.cs
- ProfileSection.cs
- AdapterDictionary.cs
- Descriptor.cs
- UserThread.cs
- DoubleAnimation.cs
- TextTreeExtractElementUndoUnit.cs
- TargetException.cs
- Interfaces.cs
- DataGridViewColumnTypePicker.cs
- Repeater.cs
- AxWrapperGen.cs
- Hyperlink.cs
- WorkflowView.cs
- InvalidateEvent.cs
- TabControl.cs
- SplineKeyFrames.cs
- ZoneIdentityPermission.cs
- InternalPermissions.cs
- EditorZone.cs
- NullableConverter.cs
- XmlnsCompatibleWithAttribute.cs
- VoiceSynthesis.cs
- CompressEmulationStream.cs
- WeakReferenceList.cs
- SvcMapFileLoader.cs
- Effect.cs
- RequestCachingSection.cs
- CommandConverter.cs
- DbProviderFactoriesConfigurationHandler.cs
- CustomErrorCollection.cs
- Journaling.cs
- TablePattern.cs
- StringPropertyBuilder.cs
- ObjectDataSourceMethodEventArgs.cs
- IntAverageAggregationOperator.cs
- ProjectionCamera.cs
- GridViewSortEventArgs.cs
- SizeConverter.cs
- GroupLabel.cs
- Completion.cs
- CodeGotoStatement.cs
- SafeNativeMethodsCLR.cs
- AuthorizationRule.cs
- UniqueConstraint.cs
- SqlConnectionPoolProviderInfo.cs
- AttachedProperty.cs
- AbandonedMutexException.cs
- WsdlWriter.cs
- MbpInfo.cs
- StructuredTypeEmitter.cs
- SimpleMailWebEventProvider.cs
- SchemaInfo.cs
- PasswordRecovery.cs
- BeginStoryboard.cs
- DeviceContext.cs
- BinaryParser.cs
- RegexNode.cs
- WindowsFormsHost.cs
- ImageDrawing.cs
- Constraint.cs
- CodeAccessPermission.cs
- ConnectionModeReader.cs
- ItemType.cs
- PathGeometry.cs
- MediaSystem.cs
- HttpModulesSection.cs
- ProjectedSlot.cs
- ScopeElement.cs
- HostedNamedPipeTransportManager.cs
- EditorPartCollection.cs
- BasicHttpSecurityElement.cs
- ToolboxItemSnapLineBehavior.cs
- SchemaTypeEmitter.cs
- Form.cs
- SystemResources.cs
- DecodeHelper.cs
- ProcessManager.cs
- Util.cs
- SmtpException.cs
- RegexCharClass.cs
- GeometryCollection.cs
- XmlSerializableServices.cs
- TrustSection.cs
- ApplicationServicesHostFactory.cs
- SystemSounds.cs
- StreamWriter.cs
- HorizontalAlignConverter.cs
- Binding.cs
- XmlCharType.cs
- HijriCalendar.cs
- CodeAttributeArgument.cs
- StrokeNodeEnumerator.cs
- Parser.cs
- ReplyChannelBinder.cs
- MetricEntry.cs
- Int16.cs
- DataServiceProviderWrapper.cs
- ConstructorNeedsTagAttribute.cs
- listitem.cs