Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / ndp / fx / src / DataWeb / Server / System / Data / Services / ProcessRequestArgs.cs / 1 / ProcessRequestArgs.cs
//---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Provides a class to provide information about the request // that is going to be processed. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services { using System; ///Use this class to look at the request uri and doing some custom validation. public sealed class ProcessRequestArgs { #region Private fields. ///The uri for this request. private readonly Uri requestUri; ///True if this request is a operation specified within a batch request, otherwise false. private readonly bool isBatchOperation; #endregion Private fields. #region Constructors. ///Initalizes a new /// The uri for this request. /// True if this request is a operation specified within a batch request, otherwise false. internal ProcessRequestArgs(Uri requestUri, bool isBatchOperation) { System.Diagnostics.Debug.Assert(requestUri != null, "requestUri != null"); this.requestUri = requestUri; this.isBatchOperation = isBatchOperation; } #endregion Constructors. #region Public Properties. ///instance. The uri for this request that is about to get processed. public Uri RequestUri { get { return this.requestUri; } } ///Returns true if this request is a operation specified within a batch request, otherwise returns false. public bool IsBatchOperation { get { return this.isBatchOperation; } } #endregion Public Properties. } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //---------------------------------------------------------------------- //// Copyright (c) Microsoft Corporation. All rights reserved. // //// Provides a class to provide information about the request // that is going to be processed. // // // @owner [....] //--------------------------------------------------------------------- namespace System.Data.Services { using System; ///Use this class to look at the request uri and doing some custom validation. public sealed class ProcessRequestArgs { #region Private fields. ///The uri for this request. private readonly Uri requestUri; ///True if this request is a operation specified within a batch request, otherwise false. private readonly bool isBatchOperation; #endregion Private fields. #region Constructors. ///Initalizes a new /// The uri for this request. /// True if this request is a operation specified within a batch request, otherwise false. internal ProcessRequestArgs(Uri requestUri, bool isBatchOperation) { System.Diagnostics.Debug.Assert(requestUri != null, "requestUri != null"); this.requestUri = requestUri; this.isBatchOperation = isBatchOperation; } #endregion Constructors. #region Public Properties. ///instance. The uri for this request that is about to get processed. public Uri RequestUri { get { return this.requestUri; } } ///Returns true if this request is a operation specified within a batch request, otherwise returns false. public bool IsBatchOperation { get { return this.isBatchOperation; } } #endregion Public Properties. } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Privilege.cs
- LiteralControl.cs
- OdbcErrorCollection.cs
- XmlLanguageConverter.cs
- SystemNetworkInterface.cs
- RegionIterator.cs
- EpmContentDeSerializer.cs
- CustomErrorsSection.cs
- DataGridViewCellStateChangedEventArgs.cs
- SoapObjectReader.cs
- DispatcherHookEventArgs.cs
- SimpleHandlerFactory.cs
- TableRowGroup.cs
- ConnectorMovedEventArgs.cs
- UserControlDocumentDesigner.cs
- Listbox.cs
- WebServiceBindingAttribute.cs
- SortedDictionary.cs
- Message.cs
- ServicePoint.cs
- CharacterBuffer.cs
- TextRange.cs
- DynamicDataRoute.cs
- complextypematerializer.cs
- ValidatingPropertiesEventArgs.cs
- EntitySet.cs
- StringPropertyBuilder.cs
- DashStyle.cs
- XmlArrayItemAttribute.cs
- BrowserCapabilitiesCompiler.cs
- ListViewItemCollectionEditor.cs
- MetadataItemCollectionFactory.cs
- ProgressBarHighlightConverter.cs
- PreProcessInputEventArgs.cs
- CatalogPart.cs
- dsa.cs
- HideDisabledControlAdapter.cs
- DataViewListener.cs
- StickyNoteAnnotations.cs
- NameNode.cs
- TriggerBase.cs
- ServicePointManager.cs
- UriSection.cs
- WebServiceTypeData.cs
- PolyQuadraticBezierSegmentFigureLogic.cs
- PropertyValidationContext.cs
- TransformerTypeCollection.cs
- PageSettings.cs
- UnaryNode.cs
- FtpWebResponse.cs
- GridItemPatternIdentifiers.cs
- AspNetSynchronizationContext.cs
- EmptyReadOnlyDictionaryInternal.cs
- AliasedSlot.cs
- Model3D.cs
- XPathNodePointer.cs
- ReachSerializer.cs
- StrokeRenderer.cs
- SqlCachedBuffer.cs
- SimpleWorkerRequest.cs
- EdmScalarPropertyAttribute.cs
- CacheAxisQuery.cs
- CellRelation.cs
- sqlpipe.cs
- EdmComplexTypeAttribute.cs
- KeyValueConfigurationCollection.cs
- CLRBindingWorker.cs
- InternalCache.cs
- CachedFontFace.cs
- ListBoxItem.cs
- VoiceChangeEventArgs.cs
- ZipIOExtraFieldElement.cs
- EditorZoneBase.cs
- ProfilePropertyMetadata.cs
- TcpHostedTransportConfiguration.cs
- NativeWrapper.cs
- FocusTracker.cs
- ContainerUIElement3D.cs
- XmlTextReaderImplHelpers.cs
- ValidationPropertyAttribute.cs
- RemotingException.cs
- WorkflowMarkupSerializer.cs
- ReferencedCollectionType.cs
- DataAdapter.cs
- PenLineJoinValidation.cs
- RelationshipSet.cs
- SystemDiagnosticsSection.cs
- Wizard.cs
- StrokeCollection.cs
- SpotLight.cs
- TemplatePropertyEntry.cs
- ReferentialConstraint.cs
- SequentialOutput.cs
- OleDbPropertySetGuid.cs
- SqlServices.cs
- JulianCalendar.cs
- FormatConvertedBitmap.cs
- ParameterToken.cs
- SafeNativeMethods.cs
- ByteStorage.cs