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
- X509Certificate2.cs
- System.Data_BID.cs
- TemplatePartAttribute.cs
- CreateUserWizardStep.cs
- FontConverter.cs
- XmlElementAttribute.cs
- WorkflowMessageEventArgs.cs
- DodSequenceMerge.cs
- ContractListAdapter.cs
- InfocardExtendedInformationCollection.cs
- SmtpReplyReaderFactory.cs
- AttributeCollection.cs
- CurrentChangedEventManager.cs
- SecureUICommand.cs
- ErasingStroke.cs
- ExitEventArgs.cs
- IRCollection.cs
- CorrelationTokenTypeConvertor.cs
- RawStylusInputCustomData.cs
- InternalDuplexChannelListener.cs
- ComplexType.cs
- SafeFileMapViewHandle.cs
- SettingsAttributeDictionary.cs
- InvokeMethodActivity.cs
- EventListenerClientSide.cs
- Button.cs
- SqlRowUpdatingEvent.cs
- StaticFileHandler.cs
- Win32KeyboardDevice.cs
- TypeRefElement.cs
- TemplatePropertyEntry.cs
- PingReply.cs
- MailSettingsSection.cs
- ResourceAssociationTypeEnd.cs
- EllipseGeometry.cs
- DoubleMinMaxAggregationOperator.cs
- DateTimeHelper.cs
- PolyLineSegmentFigureLogic.cs
- XmlTypeAttribute.cs
- WorkflowMarkupSerializationException.cs
- PropertyEntry.cs
- SHA1Managed.cs
- InputLanguageEventArgs.cs
- IItemProperties.cs
- BaseTemplateBuildProvider.cs
- TextDocumentView.cs
- PersistenceException.cs
- XslNumber.cs
- NetworkInformationPermission.cs
- ResolveDuplexCD1AsyncResult.cs
- SendMessageContent.cs
- InfoCardRSAPKCS1SignatureFormatter.cs
- ObfuscationAttribute.cs
- AuthenticationModuleElement.cs
- SimpleRecyclingCache.cs
- BufferedReadStream.cs
- WebPartUtil.cs
- ControlPropertyNameConverter.cs
- MarkerProperties.cs
- ColorPalette.cs
- IntSecurity.cs
- StickyNoteHelper.cs
- Helpers.cs
- Base64Encoder.cs
- Msmq4SubqueuePoisonHandler.cs
- RightsManagementInformation.cs
- webclient.cs
- IdentityHolder.cs
- TypeSemantics.cs
- KoreanCalendar.cs
- ThemeDictionaryExtension.cs
- DbParameterCollectionHelper.cs
- RangeBase.cs
- SchemaNames.cs
- Transform.cs
- ProtocolsInstallComponent.cs
- TableStyle.cs
- TextCompositionEventArgs.cs
- control.ime.cs
- SiblingIterators.cs
- PrintPreviewGraphics.cs
- OnOperation.cs
- RegistryDataKey.cs
- ExtensionQuery.cs
- RelationshipSet.cs
- AttributeProviderAttribute.cs
- VectorAnimationUsingKeyFrames.cs
- EngineSite.cs
- ProxyAttribute.cs
- ColorMatrix.cs
- IndentedTextWriter.cs
- AutoFocusStyle.xaml.cs
- GeometryDrawing.cs
- EntityCommandCompilationException.cs
- XmlSchemaGroup.cs
- CursorInteropHelper.cs
- CompilationUnit.cs
- ParserHooks.cs
- MetadataArtifactLoaderComposite.cs
- TabRenderer.cs