Code:
/ DotNET / DotNET / 8.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
- DecimalConstantAttribute.cs
- Random.cs
- IncrementalHitTester.cs
- Calendar.cs
- FastEncoderWindow.cs
- IdentityModelDictionary.cs
- ContainerAction.cs
- ResourcePart.cs
- InputLangChangeRequestEvent.cs
- PointAnimationUsingKeyFrames.cs
- Dynamic.cs
- PeerNearMe.cs
- AssemblyHelper.cs
- Point.cs
- XmlSchemaChoice.cs
- OrderedDictionary.cs
- HtmlListAdapter.cs
- FlowDocumentPage.cs
- panel.cs
- DesigntimeLicenseContext.cs
- Vector3DAnimationBase.cs
- ControlParameter.cs
- DataObject.cs
- OleDbCommand.cs
- WinFormsSecurity.cs
- safemediahandle.cs
- ColorConvertedBitmap.cs
- Underline.cs
- BridgeDataRecord.cs
- XmlArrayItemAttributes.cs
- GregorianCalendarHelper.cs
- WebPartTransformerCollection.cs
- SmtpAuthenticationManager.cs
- DirectionalLight.cs
- WS2007FederationHttpBindingElement.cs
- FileCodeGroup.cs
- ClassHandlersStore.cs
- DataBoundControlParameterTarget.cs
- DrawingContextDrawingContextWalker.cs
- ErrorLog.cs
- BaseParser.cs
- OdbcParameter.cs
- COM2PropertyBuilderUITypeEditor.cs
- FlowLayout.cs
- AppSettingsReader.cs
- ConsoleKeyInfo.cs
- XmlSchemaFacet.cs
- SchemaNames.cs
- ObjectCacheSettings.cs
- QuadraticEase.cs
- SerialPort.cs
- UInt32.cs
- PreProcessor.cs
- ConsoleKeyInfo.cs
- CatalogZone.cs
- GridViewItemAutomationPeer.cs
- ArgumentNullException.cs
- WindowsContainer.cs
- TemplatePropertyEntry.cs
- BufferedGraphics.cs
- WindowsUpDown.cs
- PrintingPermission.cs
- NativeMethods.cs
- Selection.cs
- QueryExpression.cs
- DataGridColumnCollection.cs
- SoapBinding.cs
- HierarchicalDataTemplate.cs
- AstNode.cs
- Border.cs
- ReaderOutput.cs
- HttpBufferlessInputStream.cs
- HttpHeaderCollection.cs
- SamlSubjectStatement.cs
- DetailsViewCommandEventArgs.cs
- UInt64.cs
- WebControlsSection.cs
- UserPreferenceChangingEventArgs.cs
- Storyboard.cs
- TablePattern.cs
- PasswordBox.cs
- ObjectStateManager.cs
- CssClassPropertyAttribute.cs
- BamlCollectionHolder.cs
- ResourceDescriptionAttribute.cs
- CroppedBitmap.cs
- AutomationAttributeInfo.cs
- GradientStop.cs
- HttpServerUtilityBase.cs
- ImageSource.cs
- IntSecurity.cs
- PathData.cs
- CompoundFileReference.cs
- GridLengthConverter.cs
- CodeIterationStatement.cs
- WindowsScrollBarBits.cs
- IChannel.cs
- DeviceContext2.cs
- MultipartIdentifier.cs
- FontStretches.cs