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
- GeometryHitTestResult.cs
- LineProperties.cs
- CheckBoxRenderer.cs
- CodeGenerator.cs
- EarlyBoundInfo.cs
- RelationshipEndCollection.cs
- HideDisabledControlAdapter.cs
- XPathLexer.cs
- Stroke.cs
- TextEncodedRawTextWriter.cs
- ZoneButton.cs
- UTF7Encoding.cs
- QuaternionKeyFrameCollection.cs
- TemplateManager.cs
- Instrumentation.cs
- ProfileManager.cs
- WebPartDescription.cs
- IIS7WorkerRequest.cs
- ListenerElementsCollection.cs
- RepeaterDataBoundAdapter.cs
- ISO2022Encoding.cs
- PasswordRecovery.cs
- MeasurementDCInfo.cs
- ServicePointManagerElement.cs
- WebServiceParameterData.cs
- SchemaNotation.cs
- SystemColors.cs
- XmlMembersMapping.cs
- InputGestureCollection.cs
- DesignerAttribute.cs
- UnknownWrapper.cs
- HtmlElementEventArgs.cs
- Error.cs
- Random.cs
- TreeNodeMouseHoverEvent.cs
- ImageField.cs
- RegexCharClass.cs
- ConditionCollection.cs
- WindowsListViewSubItem.cs
- FilterElement.cs
- DesignerValidatorAdapter.cs
- SafeNativeMethods.cs
- dataobject.cs
- SqlParameterCollection.cs
- MsmqHostedTransportConfiguration.cs
- SoapEnumAttribute.cs
- ButtonFieldBase.cs
- EdmComplexTypeAttribute.cs
- StructuralCache.cs
- XamlInterfaces.cs
- RangeBase.cs
- BidOverLoads.cs
- XsdBuilder.cs
- TextWriter.cs
- TimeSpanValidatorAttribute.cs
- Vector3D.cs
- AlignmentYValidation.cs
- FtpWebRequest.cs
- MailAddressParser.cs
- UxThemeWrapper.cs
- ToolStripDropTargetManager.cs
- SharedDp.cs
- IntegrationExceptionEventArgs.cs
- formatter.cs
- IUnknownConstantAttribute.cs
- DesigntimeLicenseContext.cs
- StructureChangedEventArgs.cs
- MailHeaderInfo.cs
- EdmComplexPropertyAttribute.cs
- NodeFunctions.cs
- AuthStoreRoleProvider.cs
- SqlDependencyUtils.cs
- COAUTHINFO.cs
- LoginCancelEventArgs.cs
- ResolveCompletedEventArgs.cs
- AssemblyNameProxy.cs
- DisplayInformation.cs
- MachineKeyValidationConverter.cs
- LayoutInformation.cs
- MatrixTransform.cs
- SafeWaitHandle.cs
- SystemNetworkInterface.cs
- AutomationPatternInfo.cs
- _UriSyntax.cs
- DiscoveryService.cs
- EnvironmentPermission.cs
- ListBoxAutomationPeer.cs
- RefreshEventArgs.cs
- EntityDataSourceWizardForm.cs
- VisualStyleInformation.cs
- DisplayNameAttribute.cs
- StructuredType.cs
- DefinitionUpdate.cs
- WeakReferenceEnumerator.cs
- SqlExpressionNullability.cs
- ReadContentAsBinaryHelper.cs
- Button.cs
- SQLGuidStorage.cs
- AsyncStreamReader.cs
- AdPostCacheSubstitution.cs