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
- _IPv6Address.cs
- HyperLinkStyle.cs
- QueryPageSettingsEventArgs.cs
- FixedPageStructure.cs
- SecurityPolicySection.cs
- XmlDataDocument.cs
- NamedElement.cs
- filewebrequest.cs
- PassportAuthenticationModule.cs
- AssertSection.cs
- ObfuscationAttribute.cs
- RedirectionProxy.cs
- DataSetSchema.cs
- PropertyManager.cs
- securitymgrsite.cs
- HwndSourceParameters.cs
- WsdlBuildProvider.cs
- AttributeCollection.cs
- ObjectDataSourceView.cs
- CalendarDay.cs
- CodeChecksumPragma.cs
- XmlWriter.cs
- DataGridCell.cs
- DoubleCollectionConverter.cs
- XmlAnyElementAttributes.cs
- TraceHandlerErrorFormatter.cs
- XsltCompileContext.cs
- ResourceDescriptionAttribute.cs
- PersistChildrenAttribute.cs
- AssociationSet.cs
- TrackingLocationCollection.cs
- TemplateKey.cs
- IDataContractSurrogate.cs
- ZoneMembershipCondition.cs
- SiteMapPath.cs
- SymmetricAlgorithm.cs
- BlockCollection.cs
- WindowsTab.cs
- DependentList.cs
- SuppressIldasmAttribute.cs
- TdsParserStateObject.cs
- Page.cs
- SqlError.cs
- PrintController.cs
- ISAPIWorkerRequest.cs
- SingleObjectCollection.cs
- UnsafeNetInfoNativeMethods.cs
- FormatterConverter.cs
- RegistrationServices.cs
- RunInstallerAttribute.cs
- ListSortDescriptionCollection.cs
- OneWayElement.cs
- EdmRelationshipNavigationPropertyAttribute.cs
- ProgressiveCrcCalculatingStream.cs
- DataGridView.cs
- OpenFileDialog.cs
- ListView.cs
- ConfigPathUtility.cs
- DataControlFieldTypeEditor.cs
- counter.cs
- CodeArgumentReferenceExpression.cs
- XmlUtf8RawTextWriter.cs
- DataGridViewIntLinkedList.cs
- ProfileService.cs
- GuidTagList.cs
- OperationPickerDialog.designer.cs
- HtmlUtf8RawTextWriter.cs
- MissingFieldException.cs
- DataGridViewTextBoxEditingControl.cs
- NumericUpDown.cs
- XhtmlBasicObjectListAdapter.cs
- NativeMethods.cs
- PageThemeCodeDomTreeGenerator.cs
- RightsManagementPermission.cs
- VirtualPathUtility.cs
- MetafileHeaderWmf.cs
- ToolStripPanelRenderEventArgs.cs
- CornerRadius.cs
- KnownTypesHelper.cs
- ScrollableControl.cs
- FontCollection.cs
- ImageInfo.cs
- LicenseManager.cs
- InfoCardRSAPKCS1KeyExchangeDeformatter.cs
- DockPattern.cs
- ConfigurationProviderException.cs
- TextChangedEventArgs.cs
- SecureEnvironment.cs
- ToolStripDropDownDesigner.cs
- ColorTransformHelper.cs
- ClrPerspective.cs
- CreateUserWizard.cs
- HttpApplicationStateBase.cs
- SqlStream.cs
- HttpGetProtocolImporter.cs
- CachingHintValidation.cs
- Model3D.cs
- FontSizeConverter.cs
- ColorTransform.cs
- Crc32Helper.cs