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
- PropertyDescriptorGridEntry.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- PartBasedPackageProperties.cs
- InternalBufferOverflowException.cs
- JournalEntryStack.cs
- SqlErrorCollection.cs
- ConnectionManagementElementCollection.cs
- GlobalizationAssembly.cs
- SqlDependencyUtils.cs
- RowBinding.cs
- Quaternion.cs
- OciEnlistContext.cs
- DataObjectPastingEventArgs.cs
- JumpItem.cs
- EdmPropertyAttribute.cs
- TransactionsSectionGroup.cs
- SegmentInfo.cs
- GeometryDrawing.cs
- ActivationWorker.cs
- CollectionType.cs
- Geometry3D.cs
- IImplicitResourceProvider.cs
- UserNamePasswordValidator.cs
- ToolStripSeparatorRenderEventArgs.cs
- COM2FontConverter.cs
- ByeMessageApril2005.cs
- XmlDocumentSerializer.cs
- XmlUtilWriter.cs
- RegularExpressionValidator.cs
- ComponentConverter.cs
- SmiContextFactory.cs
- ReadOnlyCollectionBuilder.cs
- Viewport3DVisual.cs
- WeakReadOnlyCollection.cs
- SqlBulkCopy.cs
- NoPersistScope.cs
- XsdSchemaFileEditor.cs
- PolicyChain.cs
- ContentElement.cs
- ExpressionWriter.cs
- XPathNavigatorReader.cs
- HttpDictionary.cs
- LinearGradientBrush.cs
- ListViewPagedDataSource.cs
- AnimationClockResource.cs
- Operator.cs
- AsyncSerializedWorker.cs
- Object.cs
- BindingOperations.cs
- InvalidEnumArgumentException.cs
- XmlRawWriter.cs
- RuntimeWrappedException.cs
- XamlToRtfParser.cs
- ServiceTimeoutsElement.cs
- messageonlyhwndwrapper.cs
- SelectionListDesigner.cs
- GeometryGroup.cs
- PreviewKeyDownEventArgs.cs
- ADMembershipProvider.cs
- DataGridViewRowEventArgs.cs
- MatrixConverter.cs
- FieldDescriptor.cs
- SafeArrayRankMismatchException.cs
- DmlSqlGenerator.cs
- ToolBar.cs
- CodeEntryPointMethod.cs
- DesignerHelpers.cs
- DeleteCardRequest.cs
- InheritanceUI.cs
- LinkedResource.cs
- SqlExpander.cs
- DirectoryNotFoundException.cs
- LicenseException.cs
- BaseCollection.cs
- XmlChildEnumerator.cs
- CancellationHandlerDesigner.cs
- SerialReceived.cs
- LoopExpression.cs
- DbDataSourceEnumerator.cs
- ISAPIRuntime.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- RuleInfoComparer.cs
- TableDesigner.cs
- CodeExpressionRuleDeclaration.cs
- EntityContainerEmitter.cs
- SiteOfOriginPart.cs
- DetailsViewDeleteEventArgs.cs
- ContentType.cs
- TableAdapterManagerGenerator.cs
- DocumentPageView.cs
- TextEditorContextMenu.cs
- SerializationObjectManager.cs
- WorkflowApplicationAbortedEventArgs.cs
- InvokePattern.cs
- CommandID.cs
- SortedList.cs
- ToolStripDropDownMenu.cs
- OleCmdHelper.cs
- SerializationStore.cs
- ConfigurationElementCollection.cs