Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Description / FaultDescriptionCollection.cs / 1 / FaultDescriptionCollection.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.Description { using System.Collections.Generic; using System.Collections.ObjectModel; using System.Runtime.Serialization; public class FaultDescriptionCollection : Collection{ internal FaultDescriptionCollection() { } public FaultDescription Find(string action) { foreach (FaultDescription description in this) { if (description != null && action == description.Action) return description; } return null; } public Collection FindAll(string action) { Collection descriptions = new Collection (); foreach (FaultDescription description in this) { if (description != null && action == description.Action) descriptions.Add(description); } return descriptions; } } } // 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
- SQLConvert.cs
- TextEndOfLine.cs
- AxisAngleRotation3D.cs
- TargetException.cs
- NativeRecognizer.cs
- XmlBindingWorker.cs
- BitmapEffectState.cs
- DecoderExceptionFallback.cs
- EventRecord.cs
- SessionConnectionReader.cs
- XmlMtomReader.cs
- OutputScopeManager.cs
- CatalogZoneDesigner.cs
- ListViewSortEventArgs.cs
- RawTextInputReport.cs
- PerformanceCounterScope.cs
- SeparatorAutomationPeer.cs
- FileSecurity.cs
- SystemBrushes.cs
- TextServicesCompartmentEventSink.cs
- FunctionImportElement.cs
- SqlSupersetValidator.cs
- BaseResourcesBuildProvider.cs
- SqlTriggerContext.cs
- QuotedStringWriteStateInfo.cs
- DriveInfo.cs
- TransportListener.cs
- Vector3DCollectionConverter.cs
- SystemParameters.cs
- EntityFunctions.cs
- DbBuffer.cs
- SocketCache.cs
- TargetParameterCountException.cs
- WebFaultClientMessageInspector.cs
- SlipBehavior.cs
- ScrollBar.cs
- HandlerBase.cs
- EntityDataSourceDataSelection.cs
- SessionSwitchEventArgs.cs
- SerialStream.cs
- ContentIterators.cs
- ProfileModule.cs
- ListViewUpdateEventArgs.cs
- Misc.cs
- SessionPageStateSection.cs
- NameValuePair.cs
- ConfigXmlDocument.cs
- XmlSchemaSimpleTypeUnion.cs
- DrawingGroup.cs
- WebPartCancelEventArgs.cs
- X509WindowsSecurityToken.cs
- DataGridViewTopLeftHeaderCell.cs
- DSASignatureFormatter.cs
- SafeEventLogReadHandle.cs
- SafeTimerHandle.cs
- FixedDSBuilder.cs
- UIntPtr.cs
- InheritanceService.cs
- RegisteredHiddenField.cs
- TrackingQuery.cs
- Dump.cs
- SessionStateModule.cs
- ServerReliableChannelBinder.cs
- UpdateManifestForBrowserApplication.cs
- IDQuery.cs
- RNGCryptoServiceProvider.cs
- Schema.cs
- StrictAndMessageFilter.cs
- FolderNameEditor.cs
- RenderingBiasValidation.cs
- ButtonBaseAdapter.cs
- documentation.cs
- DescendantBaseQuery.cs
- SchemaElement.cs
- SerTrace.cs
- CustomAttributeBuilder.cs
- BlockCollection.cs
- SAPICategories.cs
- CodeStatement.cs
- SiteMapDataSourceView.cs
- COM2TypeInfoProcessor.cs
- RegexFCD.cs
- InfoCardSchemas.cs
- xsdvalidator.cs
- WorkerRequest.cs
- CapabilitiesRule.cs
- ellipse.cs
- TextParagraphCache.cs
- Configuration.cs
- DBSqlParserColumnCollection.cs
- CoTaskMemHandle.cs
- EntryIndex.cs
- DataServices.cs
- LogStore.cs
- SqlProvider.cs
- DataBoundControlParameterTarget.cs
- ImageIndexConverter.cs
- XmlSchemaSimpleTypeList.cs
- ActionItem.cs
- ProxyAttribute.cs