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
- GridViewDeletedEventArgs.cs
- SafeHandles.cs
- RuntimeConfig.cs
- ListCollectionView.cs
- OdbcParameterCollection.cs
- PingOptions.cs
- UrlMappingsModule.cs
- oledbmetadatacolumnnames.cs
- FactoryGenerator.cs
- EventRecord.cs
- WebPartDescriptionCollection.cs
- SoapHelper.cs
- JournalEntryStack.cs
- AppSettingsExpressionBuilder.cs
- FragmentQueryProcessor.cs
- FrameDimension.cs
- TimeoutHelper.cs
- WebConfigurationFileMap.cs
- WeakReferenceEnumerator.cs
- HyperLinkField.cs
- QueryLifecycle.cs
- ManipulationStartedEventArgs.cs
- DbBuffer.cs
- WrappedIUnknown.cs
- UInt32.cs
- StreamAsIStream.cs
- ServiceProviders.cs
- Button.cs
- ReaderWriterLockWrapper.cs
- UnsafeNativeMethodsTablet.cs
- DataSourceControl.cs
- JapaneseCalendar.cs
- TypeCacheManager.cs
- MetadataArtifactLoaderCompositeFile.cs
- XmlChildNodes.cs
- XmlSchemas.cs
- SqlBulkCopyColumnMappingCollection.cs
- BitmapEffectDrawingContextState.cs
- Bidi.cs
- LocatorManager.cs
- WebConfigurationHostFileChange.cs
- ProviderUtil.cs
- EntryPointNotFoundException.cs
- DBConnectionString.cs
- ConstructorArgumentAttribute.cs
- DataChangedEventManager.cs
- TypeBuilderInstantiation.cs
- Rijndael.cs
- LazyInitializer.cs
- RequestCacheManager.cs
- FilterElement.cs
- XmlNotation.cs
- DataColumnMapping.cs
- DispatcherHookEventArgs.cs
- ReferenceSchema.cs
- ObjectRef.cs
- PeerNameRecord.cs
- DataGridHelper.cs
- WindowAutomationPeer.cs
- SQLSingle.cs
- EditingScopeUndoUnit.cs
- PrimitiveType.cs
- PersistenceContextEnlistment.cs
- SizeAnimationClockResource.cs
- TreeIterator.cs
- AssemblyAssociatedContentFileAttribute.cs
- AsyncParams.cs
- SafeArrayTypeMismatchException.cs
- MaskedTextProvider.cs
- UInt64.cs
- Point3DKeyFrameCollection.cs
- DataObject.cs
- _HTTPDateParse.cs
- TransportChannelListener.cs
- XmlSchemaImport.cs
- HttpAsyncResult.cs
- _UncName.cs
- RepeaterItem.cs
- PointF.cs
- ServiceConfigurationTraceRecord.cs
- RemotingConfiguration.cs
- WsatServiceAddress.cs
- MatrixUtil.cs
- OverloadGroupAttribute.cs
- ContextMenu.cs
- TemplateKeyConverter.cs
- PriorityQueue.cs
- FlowDocumentScrollViewerAutomationPeer.cs
- ImmutableObjectAttribute.cs
- RNGCryptoServiceProvider.cs
- DataControlReferenceCollection.cs
- HTTPNotFoundHandler.cs
- TextHidden.cs
- XPathBinder.cs
- HtmlAnchor.cs
- QilValidationVisitor.cs
- MimeObjectFactory.cs
- DataTableReader.cs
- WindowsListViewGroupHelper.cs
- EpmAttributeNameBuilder.cs