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
- WorkflowStateRollbackService.cs
- InvalidOleVariantTypeException.cs
- KeyGesture.cs
- CapabilitiesSection.cs
- FaultCallbackWrapper.cs
- CancellationHandler.cs
- wgx_commands.cs
- ViewGenResults.cs
- ChameleonKey.cs
- EntityDescriptor.cs
- ComPlusThreadInitializer.cs
- MessageQueueCriteria.cs
- SemaphoreFullException.cs
- ToolBar.cs
- ReaderWriterLockWrapper.cs
- Drawing.cs
- EmptyControlCollection.cs
- EncoderNLS.cs
- Style.cs
- Part.cs
- X509ChainElement.cs
- ISAPIRuntime.cs
- PageStatePersister.cs
- TabletDeviceInfo.cs
- AttributeUsageAttribute.cs
- ModifierKeysConverter.cs
- ProtocolsSection.cs
- SQLSingle.cs
- BindingWorker.cs
- MeasurementDCInfo.cs
- MissingMemberException.cs
- MenuItemStyle.cs
- SelectionBorderGlyph.cs
- AmbientProperties.cs
- RtfToXamlLexer.cs
- BrowsableAttribute.cs
- ErrorFormatterPage.cs
- RegexCompilationInfo.cs
- QueueProcessor.cs
- BooleanFunctions.cs
- TrustManagerMoreInformation.cs
- unsafeIndexingFilterStream.cs
- MessageHeaderAttribute.cs
- DataBindingCollection.cs
- MD5Cng.cs
- CaseInsensitiveOrdinalStringComparer.cs
- RoutedCommand.cs
- HttpClientCertificate.cs
- EdmConstants.cs
- URLEditor.cs
- DbDataSourceEnumerator.cs
- CriticalHandle.cs
- ServiceAuthorizationBehavior.cs
- ReadOnlyHierarchicalDataSourceView.cs
- _SslStream.cs
- ProgressBar.cs
- TableCellCollection.cs
- StorageComplexPropertyMapping.cs
- PrivilegeNotHeldException.cs
- EncodingFallbackAwareXmlTextWriter.cs
- ProcessInputEventArgs.cs
- ToolStripLocationCancelEventArgs.cs
- WebPartCatalogCloseVerb.cs
- PersonalizationProvider.cs
- VisualProxy.cs
- EnvironmentPermission.cs
- CellTreeNode.cs
- TableLayout.cs
- ScheduleChanges.cs
- EasingKeyFrames.cs
- DataContext.cs
- ErrorHandlingAcceptor.cs
- InputMethodStateChangeEventArgs.cs
- WebServicesDescriptionAttribute.cs
- DefaultAsyncDataDispatcher.cs
- IdentifierCreationService.cs
- ReadOnlyDataSourceView.cs
- SqlDataSourceTableQuery.cs
- GreaterThan.cs
- PropertyDescriptorCollection.cs
- ObjectQueryProvider.cs
- ParentQuery.cs
- DbXmlEnabledProviderManifest.cs
- TypedTableBaseExtensions.cs
- WebPartDescription.cs
- WebPartZoneCollection.cs
- StatusBar.cs
- TextSpanModifier.cs
- LinearKeyFrames.cs
- InkPresenterAutomationPeer.cs
- PropertySourceInfo.cs
- Update.cs
- HTTPAPI_VERSION.cs
- TableCell.cs
- ImageSourceConverter.cs
- TableCellCollection.cs
- ConfigurationLockCollection.cs
- SimplePropertyEntry.cs
- _NtlmClient.cs
- EmbeddedMailObjectsCollection.cs