Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / 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
- ExtentCqlBlock.cs
- NavigationWindow.cs
- Point4DConverter.cs
- PageContentCollection.cs
- CreatingCookieEventArgs.cs
- DataGridItemEventArgs.cs
- BooleanSwitch.cs
- DocumentPageTextView.cs
- TextTreeDeleteContentUndoUnit.cs
- TreeViewItemAutomationPeer.cs
- RadioButton.cs
- FixedSchema.cs
- NoClickablePointException.cs
- WebServiceClientProxyGenerator.cs
- XmlSchemaAppInfo.cs
- DataTableCollection.cs
- RoleService.cs
- WorkflowViewStateService.cs
- DataGridViewCellValueEventArgs.cs
- LinkedResourceCollection.cs
- TableChangeProcessor.cs
- CfgRule.cs
- ObjectToIdCache.cs
- WebServiceErrorEvent.cs
- EndPoint.cs
- UserControl.cs
- BitmapCodecInfoInternal.cs
- DataGridTableCollection.cs
- SqlParameterCollection.cs
- SelectionPatternIdentifiers.cs
- NativeBuffer.cs
- Listbox.cs
- WsrmFault.cs
- PrincipalPermission.cs
- XmlAnyAttributeAttribute.cs
- xsdvalidator.cs
- StoreItemCollection.cs
- DataBindEngine.cs
- precedingquery.cs
- PageThemeCodeDomTreeGenerator.cs
- XPathNodeInfoAtom.cs
- DataGridState.cs
- MDIControlStrip.cs
- TextContainer.cs
- JavascriptCallbackMessageInspector.cs
- DrawingGroup.cs
- TextMessageEncodingBindingElement.cs
- BidPrivateBase.cs
- XmlSerializationWriter.cs
- MeasureData.cs
- Assembly.cs
- RelOps.cs
- TypeNameHelper.cs
- HttpDigestClientElement.cs
- HttpListenerElement.cs
- ProxyWebPart.cs
- Calendar.cs
- PersistenceMetadataNamespace.cs
- RequestResizeEvent.cs
- DbLambda.cs
- OleDbDataAdapter.cs
- CellPartitioner.cs
- InvalidPropValue.cs
- SoapSchemaMember.cs
- TdsParserStaticMethods.cs
- ToolStripDropDownClosingEventArgs.cs
- TransformConverter.cs
- XmlSchemaComplexType.cs
- Rotation3D.cs
- GridViewActionList.cs
- SchemaRegistration.cs
- StandardBindingReliableSessionElement.cs
- DataGridViewCellErrorTextNeededEventArgs.cs
- ConnectionStringsExpressionBuilder.cs
- IdentityNotMappedException.cs
- SafeCoTaskMem.cs
- WorkingDirectoryEditor.cs
- TraceShell.cs
- GCHandleCookieTable.cs
- CollaborationHelperFunctions.cs
- XmlNode.cs
- ReflectionUtil.cs
- PaperSource.cs
- MethodBuilderInstantiation.cs
- FormViewUpdatedEventArgs.cs
- ExpandoObject.cs
- UshortList2.cs
- WebDisplayNameAttribute.cs
- ExeConfigurationFileMap.cs
- JsonReader.cs
- XmlIncludeAttribute.cs
- EntitySqlQueryCacheEntry.cs
- DuplicateWaitObjectException.cs
- GridViewPageEventArgs.cs
- LoadedOrUnloadedOperation.cs
- TemplateField.cs
- QuaternionIndependentAnimationStorage.cs
- Size.cs
- CommandHelper.cs
- PreviewPageInfo.cs