Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Dispatcher / QueryException.cs / 1 / QueryException.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.Dispatcher { using System; using System.Xml; using System.Xml.XPath; internal enum QueryProcessingError { None, Unexpected, TypeMismatch, UnsupportedXmlNodeType, NodeCountMaxExceeded, InvalidXmlAttributes, InvalidNavigatorPosition, NotAtomized, NotSupported, InvalidBodyAccess, InvalidNamespacePrefix } internal class QueryProcessingException : XPathException { QueryProcessingError error; internal QueryProcessingException(QueryProcessingError error, string message) : base(message, null) { this.error = error; } internal QueryProcessingException(QueryProcessingError error) : this(error, null) { this.error = error; } public override string ToString() { return this.error.ToString(); } } internal enum QueryCompileError { None, General, CouldNotParseExpression, UnexpectedToken, UnsupportedOperator, UnsupportedAxis, UnsupportedFunction, UnsupportedNodeTest, UnsupportedExpression, AbsolutePathRequired, InvalidNCName, InvalidVariable, InvalidNumber, InvalidLiteral, InvalidOperatorName, InvalidNodeType, InvalidExpression, InvalidFunction, InvalidLocationPath, InvalidLocationStep, InvalidAxisSpecifier, InvalidNodeTest, InvalidPredicate, InvalidComparison, InvalidOrdinal, InvalidType, InvalidTypeConversion, NoNamespaceForPrefix, MismatchedParen, DuplicateOpcode, OpcodeExists, OpcodeNotFound, PredicateNestingTooDeep } internal class QueryCompileException : XPathException { QueryCompileError error; internal QueryCompileException(QueryCompileError error, string message) : base(message, null) { this.error = error; } internal QueryCompileException(QueryCompileError error) : this(error, null) { this.error = error; } public override string ToString() { return this.error.ToString(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Int16Storage.cs
- ButtonBaseAdapter.cs
- PageAsyncTask.cs
- HtmlDocument.cs
- Style.cs
- ErrorReporting.cs
- DifferencingCollection.cs
- ServiceManagerHandle.cs
- AssertSection.cs
- FlowDocumentView.cs
- SqlParameter.cs
- XmlSchemaAttribute.cs
- ImageMetadata.cs
- PolyLineSegmentFigureLogic.cs
- ManipulationDevice.cs
- ReflectPropertyDescriptor.cs
- RuleSettings.cs
- XmlDataLoader.cs
- RawStylusInputCustomDataList.cs
- XsdBuilder.cs
- FlowDocumentPage.cs
- PriorityRange.cs
- CurrentChangingEventManager.cs
- SplitterPanel.cs
- ComPlusInstanceProvider.cs
- TypeSystem.cs
- DesignerVerbCollection.cs
- RuleProcessor.cs
- ProviderConnectionPointCollection.cs
- OAVariantLib.cs
- InternalBufferOverflowException.cs
- BaseValidatorDesigner.cs
- HiddenField.cs
- TypedAsyncResult.cs
- TagPrefixInfo.cs
- X509ThumbprintKeyIdentifierClause.cs
- TabControlEvent.cs
- MulticastOption.cs
- NeutralResourcesLanguageAttribute.cs
- CodeCastExpression.cs
- SchemaSetCompiler.cs
- SqlRowUpdatedEvent.cs
- ServiceProviders.cs
- serverconfig.cs
- ProcessProtocolHandler.cs
- EventProviderWriter.cs
- Psha1DerivedKeyGeneratorHelper.cs
- RequiredFieldValidator.cs
- validationstate.cs
- ListDictionaryInternal.cs
- PersonalizationState.cs
- HTTPNotFoundHandler.cs
- QilLiteral.cs
- Cursors.cs
- IgnoreDeviceFilterElementCollection.cs
- RoutedEvent.cs
- MappingException.cs
- EdmTypeAttribute.cs
- DesignTimeSiteMapProvider.cs
- CodeMemberEvent.cs
- ChangeConflicts.cs
- AppAction.cs
- WorkerRequest.cs
- HttpStreamFormatter.cs
- ToolboxControl.cs
- DataGridTableCollection.cs
- HttpHandlerAction.cs
- updatecommandorderer.cs
- ExpandCollapseProviderWrapper.cs
- ToolStripGrip.cs
- SecureEnvironment.cs
- _HelperAsyncResults.cs
- DelegatingConfigHost.cs
- EntityDataSourceWrapperPropertyDescriptor.cs
- COM2ExtendedUITypeEditor.cs
- OperationPickerDialog.cs
- __Filters.cs
- ImageSource.cs
- HostingEnvironment.cs
- WebPartConnectionsCancelEventArgs.cs
- IgnoreFileBuildProvider.cs
- ClientTargetCollection.cs
- ReflectTypeDescriptionProvider.cs
- Point3DIndependentAnimationStorage.cs
- EndpointDiscoveryMetadata.cs
- RawKeyboardInputReport.cs
- StreamGeometry.cs
- CodeCatchClause.cs
- MemberRelationshipService.cs
- FullTextBreakpoint.cs
- SafeNativeMethods.cs
- DropSource.cs
- SettingsPropertyNotFoundException.cs
- RequestQueue.cs
- TableLayoutCellPaintEventArgs.cs
- OdbcFactory.cs
- LoginUtil.cs
- DefaultHttpHandler.cs
- NameValueCollection.cs
- TargetControlTypeAttribute.cs