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
- _NegoState.cs
- PersistenceProviderElement.cs
- ServiceBusyException.cs
- IntermediatePolicyValidator.cs
- BindingContext.cs
- Point3DCollectionValueSerializer.cs
- RecordManager.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- Helper.cs
- MouseBinding.cs
- WrappedIUnknown.cs
- DocumentsTrace.cs
- WebScriptMetadataFormatter.cs
- DateTimeConverter2.cs
- SafeUserTokenHandle.cs
- RequestCachingSection.cs
- DirectoryObjectSecurity.cs
- Win32PrintDialog.cs
- Parameter.cs
- TypeSystemHelpers.cs
- EnumerableCollectionView.cs
- BmpBitmapEncoder.cs
- DesignerValidationSummaryAdapter.cs
- XmlMemberMapping.cs
- DecimalAnimationUsingKeyFrames.cs
- SettingsAttributeDictionary.cs
- DbConnectionPoolGroup.cs
- BinaryObjectWriter.cs
- Source.cs
- COM2PropertyBuilderUITypeEditor.cs
- TextViewElement.cs
- NetworkStream.cs
- HtmlInputReset.cs
- DecoderExceptionFallback.cs
- ProtectedConfigurationSection.cs
- ErrorFormatterPage.cs
- DesignerRegionMouseEventArgs.cs
- LinearQuaternionKeyFrame.cs
- FormClosedEvent.cs
- SqlDataSourceEnumerator.cs
- XmlReturnWriter.cs
- DoubleLink.cs
- ObjectSecurity.cs
- MenuItemBindingCollection.cs
- smtppermission.cs
- TypedCompletedAsyncResult.cs
- Blend.cs
- CuspData.cs
- COM2PropertyPageUITypeConverter.cs
- ImageMapEventArgs.cs
- URLAttribute.cs
- SharedConnectionWorkflowTransactionService.cs
- PopupRoot.cs
- MetadataArtifactLoaderCompositeFile.cs
- ResourceSetExpression.cs
- CompilerParameters.cs
- BamlTreeMap.cs
- MD5.cs
- UserControlParser.cs
- WebScriptEnablingBehavior.cs
- MatrixTransform3D.cs
- BitmapDecoder.cs
- NotFiniteNumberException.cs
- Model3DGroup.cs
- TypeDependencyAttribute.cs
- DataGridViewAutoSizeModeEventArgs.cs
- RSAOAEPKeyExchangeFormatter.cs
- RawStylusInputCustomData.cs
- invalidudtexception.cs
- Glyph.cs
- EntitySetRetriever.cs
- Bind.cs
- ElementNotEnabledException.cs
- XsltLibrary.cs
- Activator.cs
- UndoManager.cs
- TrackingProfile.cs
- ToolStripPanelSelectionGlyph.cs
- MonikerUtility.cs
- AuthenticationService.cs
- WebBrowserNavigatedEventHandler.cs
- ApplicationFileParser.cs
- SafePointer.cs
- InternalConfigSettingsFactory.cs
- ConnectionsZone.cs
- EntityConnection.cs
- ObjectDataSourceChooseTypePanel.cs
- FontUnitConverter.cs
- FindCriteriaApril2005.cs
- ToolStripManager.cs
- MenuAutomationPeer.cs
- CubicEase.cs
- SignedXml.cs
- DataGridViewRowPostPaintEventArgs.cs
- VectorCollection.cs
- OdbcParameter.cs
- DataBoundControl.cs
- ApplicationSecurityInfo.cs
- DataBindingExpressionBuilder.cs
- DrawingContext.cs