Code:
/ DotNET / DotNET / 8.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
- ToolStripAdornerWindowService.cs
- TransformerTypeCollection.cs
- InitializerFacet.cs
- AttributeUsageAttribute.cs
- ReadOnlyDictionary.cs
- LifetimeManager.cs
- updateconfighost.cs
- sqlcontext.cs
- TypeDescriptorContext.cs
- VisualStyleElement.cs
- AuthorizationRuleCollection.cs
- MembershipUser.cs
- EdmConstants.cs
- ThreadStaticAttribute.cs
- WorkflowDataContext.cs
- SmiMetaData.cs
- SortFieldComparer.cs
- FileEnumerator.cs
- ColumnMapCopier.cs
- XmlCharCheckingReader.cs
- WebConfigurationFileMap.cs
- DbConnectionHelper.cs
- EncryptedType.cs
- MetadataItemCollectionFactory.cs
- LayoutEngine.cs
- MeshGeometry3D.cs
- TextTreeTextElementNode.cs
- DesignerSerializationVisibilityAttribute.cs
- OpCopier.cs
- ColumnHeaderConverter.cs
- ExitEventArgs.cs
- KnownBoxes.cs
- InstalledFontCollection.cs
- TextBoxView.cs
- XmlByteStreamReader.cs
- ByteStream.cs
- WebReferencesBuildProvider.cs
- BuildDependencySet.cs
- XamlTypeMapperSchemaContext.cs
- CharUnicodeInfo.cs
- CategoryGridEntry.cs
- ComponentEditorForm.cs
- SystemUnicastIPAddressInformation.cs
- CodeValidator.cs
- DoubleUtil.cs
- Funcletizer.cs
- SafeSecurityHandles.cs
- ByteStreamMessageEncodingElement.cs
- DoubleLinkList.cs
- UDPClient.cs
- ReadOnlyPropertyMetadata.cs
- XmlCustomFormatter.cs
- TransactionContextValidator.cs
- HierarchicalDataSourceControl.cs
- _LoggingObject.cs
- DatagramAdapter.cs
- TraceSection.cs
- DataGridViewComboBoxCell.cs
- SQLBinary.cs
- SqlStream.cs
- PropertyGeneratedEventArgs.cs
- RowType.cs
- MdiWindowListItemConverter.cs
- FilteredAttributeCollection.cs
- CompilerParameters.cs
- SafeHandles.cs
- IPEndPoint.cs
- Point3DConverter.cs
- CodeExporter.cs
- FileSystemInfo.cs
- StorageScalarPropertyMapping.cs
- AttributeCollection.cs
- EventLogLink.cs
- TiffBitmapDecoder.cs
- CatalogPartCollection.cs
- SelectingProviderEventArgs.cs
- ResourceAttributes.cs
- TextDecoration.cs
- MruCache.cs
- ReadWriteObjectLock.cs
- StoreItemCollection.Loader.cs
- DependencyProperty.cs
- ActiveXSite.cs
- FileSystemInfo.cs
- AutoCompleteStringCollection.cs
- securestring.cs
- ToolStripAdornerWindowService.cs
- SignatureToken.cs
- TransactionState.cs
- ScrollChrome.cs
- X509Certificate2.cs
- Keywords.cs
- EventManager.cs
- ImageCreator.cs
- TextRangeEditLists.cs
- UnionCqlBlock.cs
- WebPart.cs
- Substitution.cs
- HtmlString.cs
- CursorEditor.cs