Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / Reflection / InvalidFilterCriteriaException.cs / 1 / InvalidFilterCriteriaException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// // // InvalidFilterCriteriaException is thrown in FindMembers when the // filter criteria is not valid for the type of filter being used. // // // // namespace System.Reflection { using System; using System.Runtime.Serialization; using ApplicationException = System.ApplicationException; [Serializable()] [System.Runtime.InteropServices.ComVisible(true)] public class InvalidFilterCriteriaException : ApplicationException { public InvalidFilterCriteriaException() : base(Environment.GetResourceString("Arg_InvalidFilterCriteriaException")) { SetErrorCode(__HResults.COR_E_INVALIDFILTERCRITERIA); } public InvalidFilterCriteriaException(String message) : base(message) { SetErrorCode(__HResults.COR_E_INVALIDFILTERCRITERIA); } public InvalidFilterCriteriaException(String message, Exception inner) : base(message, inner) { SetErrorCode(__HResults.COR_E_INVALIDFILTERCRITERIA); } protected InvalidFilterCriteriaException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlRawWriter.cs
- SqlErrorCollection.cs
- FunctionImportMapping.cs
- X509SecurityToken.cs
- EnumBuilder.cs
- FormViewCommandEventArgs.cs
- ListCollectionView.cs
- AssociationTypeEmitter.cs
- CalendarButton.cs
- XmlNode.cs
- ProtectedConfigurationSection.cs
- FlagsAttribute.cs
- TextEditorCopyPaste.cs
- SecurityTokenSerializer.cs
- IndexedGlyphRun.cs
- ModelTreeEnumerator.cs
- WinEventTracker.cs
- ISAPIRuntime.cs
- PrintEvent.cs
- OutputWindow.cs
- FontDriver.cs
- StateMachine.cs
- TreeChangeInfo.cs
- EmptyElement.cs
- DirtyTextRange.cs
- ZoneLinkButton.cs
- ListItemCollection.cs
- SecurityManager.cs
- HandleCollector.cs
- NavigationService.cs
- InstallerTypeAttribute.cs
- SqlServer2KCompatibilityAnnotation.cs
- DesignerUtility.cs
- StringExpressionSet.cs
- ItemCheckedEvent.cs
- HttpRequestCacheValidator.cs
- Span.cs
- _ListenerAsyncResult.cs
- IndexerReference.cs
- XmlSchemaProviderAttribute.cs
- TextPenaltyModule.cs
- DataGrid.cs
- TypeConverterAttribute.cs
- ProcessModuleDesigner.cs
- FreezableOperations.cs
- PaperSize.cs
- QuaternionRotation3D.cs
- XmlSchemaImporter.cs
- HexParser.cs
- ObjectStateEntry.cs
- XmlSchemaComplexType.cs
- Image.cs
- DesignerHelpers.cs
- TransformPatternIdentifiers.cs
- ResourceManager.cs
- Listbox.cs
- QueryExpr.cs
- StreamWithDictionary.cs
- NamedElement.cs
- ModelPerspective.cs
- ContextStack.cs
- SoapEnumAttribute.cs
- ByteFacetDescriptionElement.cs
- AttributeCollection.cs
- DrawingAttributes.cs
- FormatterConverter.cs
- XPathScanner.cs
- HuffmanTree.cs
- XPathNodeIterator.cs
- TreeBuilder.cs
- UseManagedPresentationBindingElement.cs
- EmptyEnumerator.cs
- OdbcEnvironmentHandle.cs
- FacetEnabledSchemaElement.cs
- LineServicesCallbacks.cs
- PageBorderless.cs
- EntityContainerEmitter.cs
- ContentDisposition.cs
- SecurityUtils.cs
- LingerOption.cs
- TraceRecords.cs
- HtmlElementCollection.cs
- PerformanceCountersElement.cs
- Point3D.cs
- DropDownList.cs
- DbSourceCommand.cs
- SettingsContext.cs
- ServicePoint.cs
- CorruptStoreException.cs
- MulticastDelegate.cs
- WindowsClientElement.cs
- MissingMethodException.cs
- SoapMessage.cs
- BufferBuilder.cs
- EventWaitHandleSecurity.cs
- TickBar.cs
- CellPartitioner.cs
- UIHelper.cs
- RelationshipSet.cs
- XmlSerializerFactory.cs