Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / WebControls / SqlDataSourceQuery.cs / 1 / SqlDataSourceQuery.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design.WebControls { using System.Collections; using System.Diagnostics; using System.Web.UI.WebControls; ////// Represents a single query of a SqlDataSource (Select/Insert/Update/Delete). /// internal sealed class SqlDataSourceQuery { private string _command; private SqlDataSourceCommandType _commandType; private ICollection _parameters; ////// public SqlDataSourceQuery(string command, SqlDataSourceCommandType commandType, ICollection parameters) { Debug.Assert(command != null); Debug.Assert(parameters != null); _command = command; _commandType = commandType; _parameters = parameters; } public string Command { get { return _command; } } public SqlDataSourceCommandType CommandType { get { return _commandType; } } public ICollection Parameters { get { return _parameters; } } } } // 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
- WebBrowserNavigatingEventHandler.cs
- ObjectListCommandCollection.cs
- Constants.cs
- ToolTipAutomationPeer.cs
- CachedPathData.cs
- XmlSubtreeReader.cs
- AspNetSynchronizationContext.cs
- Wow64ConfigurationLoader.cs
- StrongName.cs
- TableRow.cs
- XPathDocumentIterator.cs
- DrawListViewItemEventArgs.cs
- ReferenceEqualityComparer.cs
- StylusSystemGestureEventArgs.cs
- MappedMetaModel.cs
- XamlTypeWithExplicitNamespace.cs
- TypeExtensionSerializer.cs
- ClientSettings.cs
- ToolStripSplitStackLayout.cs
- DropShadowEffect.cs
- BlurBitmapEffect.cs
- SystemInformation.cs
- StrokeCollectionDefaultValueFactory.cs
- BindStream.cs
- HealthMonitoringSection.cs
- UriParserTemplates.cs
- CodeTypeDelegate.cs
- TimeSpanValidator.cs
- KerberosRequestorSecurityToken.cs
- ContextBase.cs
- DataBoundControlDesigner.cs
- Brush.cs
- CanonicalXml.cs
- LocalizedNameDescriptionPair.cs
- DataBindingsDialog.cs
- DependsOnAttribute.cs
- ObjectPropertyMapping.cs
- securitycriticaldataClass.cs
- TemplateApplicationHelper.cs
- UnsafeNativeMethods.cs
- DataServiceRequestOfT.cs
- NameSpaceExtractor.cs
- ButtonBase.cs
- ToolBar.cs
- GridViewUpdateEventArgs.cs
- UnsafeNativeMethods.cs
- WsdlInspector.cs
- OverloadGroupAttribute.cs
- CollectionChangedEventManager.cs
- SQLRoleProvider.cs
- AuthorizationSection.cs
- XhtmlConformanceSection.cs
- DataSourceViewSchemaConverter.cs
- OverflowException.cs
- Pen.cs
- TreeBuilderBamlTranslator.cs
- BamlLocalizableResourceKey.cs
- CatalogPartChrome.cs
- CodeDOMProvider.cs
- ServiceSecurityContext.cs
- ExpressionEditorSheet.cs
- ObjectStateFormatter.cs
- WindowsClientCredential.cs
- HandlerWithFactory.cs
- UdpDiscoveryEndpointElement.cs
- ResourceDictionaryCollection.cs
- Image.cs
- ColumnMapCopier.cs
- RuntimeCompatibilityAttribute.cs
- DiscoveryReference.cs
- ThreadStaticAttribute.cs
- ContainerControl.cs
- _PooledStream.cs
- MsmqDiagnostics.cs
- CodeAttributeArgument.cs
- EmptyReadOnlyDictionaryInternal.cs
- InfoCardClaimCollection.cs
- Context.cs
- SqlCacheDependencyDatabaseCollection.cs
- TouchesCapturedWithinProperty.cs
- SaveFileDialog.cs
- SqlServices.cs
- PermissionSetEnumerator.cs
- TypeUnloadedException.cs
- UserNameSecurityTokenProvider.cs
- DataGridViewCheckBoxCell.cs
- Pointer.cs
- ListBindableAttribute.cs
- ToolStripProgressBar.cs
- XmlSortKeyAccumulator.cs
- HtmlShim.cs
- HwndMouseInputProvider.cs
- SingleKeyFrameCollection.cs
- XmlWrappingReader.cs
- HtmlGenericControl.cs
- UserControl.cs
- TrackingProfileManager.cs
- ListParagraph.cs
- CaseInsensitiveOrdinalStringComparer.cs
- Int32Animation.cs