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
- BaseTemplateParser.cs
- _UriTypeConverter.cs
- GlobalProxySelection.cs
- AccessDataSource.cs
- XPathAncestorQuery.cs
- WebDisplayNameAttribute.cs
- WebPartHeaderCloseVerb.cs
- Debug.cs
- NamedElement.cs
- KeyBinding.cs
- EmptyControlCollection.cs
- LocalizabilityAttribute.cs
- DebugView.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- VisualBasicSettingsHandler.cs
- SliderAutomationPeer.cs
- UndirectedGraph.cs
- UnicastIPAddressInformationCollection.cs
- PropertyMetadata.cs
- ToolZone.cs
- DelegateSerializationHolder.cs
- SessionIDManager.cs
- UnrecognizedPolicyAssertionElement.cs
- NetTcpBinding.cs
- TreeViewImageIndexConverter.cs
- StringFunctions.cs
- XmlSchemaComplexType.cs
- DockProviderWrapper.cs
- Win32Native.cs
- MinMaxParagraphWidth.cs
- TrackingLocationCollection.cs
- DataControlReferenceCollection.cs
- DataRow.cs
- UTF8Encoding.cs
- SimpleBitVector32.cs
- DeviceSpecificDesigner.cs
- MenuItemBinding.cs
- EntitySetBaseCollection.cs
- MdiWindowListItemConverter.cs
- ReachFixedDocumentSerializerAsync.cs
- MULTI_QI.cs
- SpotLight.cs
- ResourceCollectionInfo.cs
- JavaScriptObjectDeserializer.cs
- LabelEditEvent.cs
- RuleSettingsCollection.cs
- CorePropertiesFilter.cs
- TrackingProfileCache.cs
- XmlDictionaryReaderQuotas.cs
- BoundField.cs
- PeerPresenceInfo.cs
- ReferencedType.cs
- QilPatternFactory.cs
- XmlSchemaAnnotation.cs
- ReliableOutputSessionChannel.cs
- OwnerDrawPropertyBag.cs
- ImageFormat.cs
- NameNode.cs
- WindowsListViewGroupSubsetLink.cs
- UnsafeNativeMethods.cs
- DigitShape.cs
- UserControl.cs
- SequentialOutput.cs
- MSG.cs
- ActiveXSite.cs
- TabPage.cs
- CodeArrayCreateExpression.cs
- Int16AnimationBase.cs
- SourceFileBuildProvider.cs
- ProgressBarHighlightConverter.cs
- XPathException.cs
- PersonalizationProvider.cs
- ReadWriteSpinLock.cs
- ProgressPage.cs
- HttpCookieCollection.cs
- OperationContractGenerationContext.cs
- httpserverutility.cs
- ManagementException.cs
- XmlJsonWriter.cs
- CodeNamespaceImport.cs
- FtpWebRequest.cs
- PipeStream.cs
- _HelperAsyncResults.cs
- TreeViewCancelEvent.cs
- HitTestWithPointDrawingContextWalker.cs
- TypeRestriction.cs
- IdentityModelDictionary.cs
- ProxyHelper.cs
- PanelStyle.cs
- HttpListenerContext.cs
- SqlRowUpdatedEvent.cs
- RootBrowserWindowAutomationPeer.cs
- PaperSource.cs
- GorillaCodec.cs
- HtmlShim.cs
- XmlILCommand.cs
- InstancePersistence.cs
- HtmlObjectListAdapter.cs
- LogRecordSequence.cs
- SingleConverter.cs