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
- Deserializer.cs
- TargetException.cs
- XmlILConstructAnalyzer.cs
- BulletedListEventArgs.cs
- DetailsViewRow.cs
- ImageList.cs
- ZoneMembershipCondition.cs
- TreeNodeStyle.cs
- HealthMonitoringSection.cs
- NavigationProgressEventArgs.cs
- TaskHelper.cs
- Geometry.cs
- GridViewRowEventArgs.cs
- TextRunCache.cs
- XmlEncodedRawTextWriter.cs
- ImageField.cs
- RefreshInfo.cs
- QueryContinueDragEvent.cs
- MailWriter.cs
- BaseResourcesBuildProvider.cs
- MetadataPropertyvalue.cs
- AnnotationAdorner.cs
- BamlLocalizableResourceKey.cs
- WebPartConnectionsConnectVerb.cs
- _AutoWebProxyScriptEngine.cs
- TemplateKey.cs
- CodeAttributeArgument.cs
- RefExpr.cs
- HttpRequestTraceRecord.cs
- DocumentPage.cs
- XmlAnyElementAttributes.cs
- TCPListener.cs
- DependencyObjectProvider.cs
- InvokeMemberBinder.cs
- GlyphElement.cs
- PrimitiveXmlSerializers.cs
- TemplateManager.cs
- GeneralTransform2DTo3D.cs
- NeedSkipTokenVisitor.cs
- HwndSourceKeyboardInputSite.cs
- MailSettingsSection.cs
- FixedPageAutomationPeer.cs
- TemplateManager.cs
- SchemaExporter.cs
- WeakReferenceList.cs
- Link.cs
- EntityProxyFactory.cs
- MetadataItem.cs
- SafeWaitHandle.cs
- Animatable.cs
- TypeBuilder.cs
- CodeStatement.cs
- ConfigXmlDocument.cs
- SecurityPermission.cs
- DataControlFieldsEditor.cs
- RelatedImageListAttribute.cs
- HttpValueCollection.cs
- ControlBuilderAttribute.cs
- ContentPresenter.cs
- PublisherIdentityPermission.cs
- DataRelation.cs
- SmtpLoginAuthenticationModule.cs
- DiagnosticsConfiguration.cs
- GeometryDrawing.cs
- ObjectViewEntityCollectionData.cs
- Compensation.cs
- GreenMethods.cs
- TextRange.cs
- StrokeCollection2.cs
- RemoteHelper.cs
- EndpointInfo.cs
- AssemblyAssociatedContentFileAttribute.cs
- CodeTryCatchFinallyStatement.cs
- ActiveXContainer.cs
- TextEffectCollection.cs
- DataServiceResponse.cs
- EventManager.cs
- FlowDocumentReaderAutomationPeer.cs
- Knowncolors.cs
- XdrBuilder.cs
- IncrementalCompileAnalyzer.cs
- TextTreeFixupNode.cs
- HandleValueEditor.cs
- CodeCastExpression.cs
- OperationAbortedException.cs
- EnumerableCollectionView.cs
- CodeTypeMember.cs
- Empty.cs
- PathFigureCollection.cs
- TextRangeEditLists.cs
- RecipientInfo.cs
- XmlDigitalSignatureProcessor.cs
- BitmapVisualManager.cs
- InheritanceContextChangedEventManager.cs
- URLString.cs
- Annotation.cs
- TreeNodeCollectionEditor.cs
- TextBounds.cs
- RichTextBoxConstants.cs
- DataListItem.cs