Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / 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
- HttpResponse.cs
- WebMessageEncodingBindingElement.cs
- SystemMulticastIPAddressInformation.cs
- WSSecurityOneDotZeroReceiveSecurityHeader.cs
- DtrList.cs
- ObjectDataSourceFilteringEventArgs.cs
- Page.cs
- PathSegment.cs
- safex509handles.cs
- TreeNode.cs
- NumberSubstitution.cs
- WebPartEditVerb.cs
- StylusDevice.cs
- FileInfo.cs
- Metadata.cs
- XmlSchemaAttributeGroupRef.cs
- Inline.cs
- Wildcard.cs
- XmlDomTextWriter.cs
- ImageSourceTypeConverter.cs
- XmlSchemaSimpleTypeUnion.cs
- PersonalizationState.cs
- ClientRuntimeConfig.cs
- ButtonFieldBase.cs
- BitmapCodecInfo.cs
- DataObjectMethodAttribute.cs
- GridViewDeleteEventArgs.cs
- HtmlFormWrapper.cs
- MdiWindowListStrip.cs
- ScriptIgnoreAttribute.cs
- RemotingConfiguration.cs
- RepeatInfo.cs
- InternalPermissions.cs
- SafeNativeMethodsOther.cs
- AlignmentYValidation.cs
- LinkConverter.cs
- FromReply.cs
- RegexCompiler.cs
- CheckBoxRenderer.cs
- XmlAnyAttributeAttribute.cs
- WriterOutput.cs
- DataGridViewCellEventArgs.cs
- MimeMultiPart.cs
- ToolStripDropTargetManager.cs
- RoutedPropertyChangedEventArgs.cs
- PersonalizablePropertyEntry.cs
- PagerSettings.cs
- SessionStateContainer.cs
- ReflectPropertyDescriptor.cs
- AssemblyNameProxy.cs
- ToolStripManager.cs
- ExceptionWrapper.cs
- InternalDispatchObject.cs
- XmlQueryContext.cs
- RegionInfo.cs
- DesignTimeParseData.cs
- NullableLongAverageAggregationOperator.cs
- ValueExpressions.cs
- ThreadStaticAttribute.cs
- ObjectListDesigner.cs
- FamilyMapCollection.cs
- ElementHostPropertyMap.cs
- SynchronizationValidator.cs
- TableLayoutStyleCollection.cs
- GroupQuery.cs
- XslTransform.cs
- Bitmap.cs
- HttpClientCertificate.cs
- DesigntimeLicenseContextSerializer.cs
- Zone.cs
- RegisteredDisposeScript.cs
- WindowInteropHelper.cs
- HealthMonitoringSection.cs
- WebPartCloseVerb.cs
- WizardPanelChangingEventArgs.cs
- DateTimeOffsetAdapter.cs
- NamespaceEmitter.cs
- NamespaceDecl.cs
- OdbcParameterCollection.cs
- ReaderContextStackData.cs
- Propagator.cs
- DecodeHelper.cs
- SessionState.cs
- OrderedEnumerableRowCollection.cs
- BaseDataListDesigner.cs
- EntityConnection.cs
- NullRuntimeConfig.cs
- CodeMemberField.cs
- BuildDependencySet.cs
- ActivityTypeCodeDomSerializer.cs
- HostingMessageProperty.cs
- ColumnHeaderConverter.cs
- PreservationFileReader.cs
- EdmType.cs
- SetterBaseCollection.cs
- CompositeActivityTypeDescriptorProvider.cs
- ReflectionPermission.cs
- Int64Storage.cs
- PackageRelationshipSelector.cs
- Stylesheet.cs