Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Description / MessageDescriptionCollection.cs / 1 / MessageDescriptionCollection.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.Description { using System.Collections.Generic; using System.ServiceModel.Channels; using System.Collections.ObjectModel; using System.Runtime.Serialization; public class MessageDescriptionCollection : Collection{ internal MessageDescriptionCollection() { } public MessageDescription Find(string action) { foreach (MessageDescription description in this) { if (description != null && action == description.Action) return description; } return null; } public Collection FindAll(string action) { Collection descriptions = new Collection (); foreach (MessageDescription 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
- InfoCardSymmetricCrypto.cs
- OrderedHashRepartitionStream.cs
- DataGridViewSelectedCellCollection.cs
- DesignerView.cs
- NullableDoubleMinMaxAggregationOperator.cs
- figurelength.cs
- TreeIterators.cs
- ValidationManager.cs
- Win32SafeHandles.cs
- HttpMethodAttribute.cs
- ArrayWithOffset.cs
- ValidationError.cs
- HandlerMappingMemo.cs
- ConfigurationElement.cs
- Socket.cs
- SettingsPropertyWrongTypeException.cs
- HybridDictionary.cs
- SqlAggregateChecker.cs
- FontClient.cs
- DetailsViewCommandEventArgs.cs
- ItemsControlAutomationPeer.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- CssTextWriter.cs
- AllowedAudienceUriElementCollection.cs
- WebHeaderCollection.cs
- RulePatternOps.cs
- TemplateBindingExtension.cs
- SqlClientMetaDataCollectionNames.cs
- DateTimePicker.cs
- InvokeGenerator.cs
- ByteStack.cs
- ParseChildrenAsPropertiesAttribute.cs
- StringOutput.cs
- SqlMethodCallConverter.cs
- _ScatterGatherBuffers.cs
- HyperlinkAutomationPeer.cs
- GroupBoxAutomationPeer.cs
- Page.cs
- ProjectionPruner.cs
- diagnosticsswitches.cs
- SystemResources.cs
- SchemaLookupTable.cs
- SqlDataSourceView.cs
- RijndaelManagedTransform.cs
- ComponentGlyph.cs
- GetPageCompletedEventArgs.cs
- ExpressionBuilderContext.cs
- ResourcesGenerator.cs
- XmlQualifiedNameTest.cs
- TreeViewDesigner.cs
- ContentType.cs
- CustomPopupPlacement.cs
- WindowsScroll.cs
- TraceData.cs
- HasCopySemanticsAttribute.cs
- ContextProperty.cs
- CheckBoxStandardAdapter.cs
- DataSourceDesigner.cs
- FieldBuilder.cs
- TypeInitializationException.cs
- _HeaderInfo.cs
- EventMap.cs
- ExpressionQuoter.cs
- SqlConnectionFactory.cs
- __Error.cs
- RegexRunnerFactory.cs
- InputScopeConverter.cs
- StorageEntityContainerMapping.cs
- EndPoint.cs
- DocumentOrderQuery.cs
- CommandHelper.cs
- QueryStringParameter.cs
- KnownTypesHelper.cs
- OlePropertyStructs.cs
- InitializationEventAttribute.cs
- HMACSHA512.cs
- GenericWebPart.cs
- SevenBitStream.cs
- OpenFileDialog.cs
- AppSettingsExpressionBuilder.cs
- Line.cs
- EncoderReplacementFallback.cs
- GridViewRow.cs
- RowVisual.cs
- SafeRightsManagementSessionHandle.cs
- ComEventsHelper.cs
- RoleManagerEventArgs.cs
- XmlSerializationGeneratedCode.cs
- ExpressionsCollectionEditor.cs
- ServiceDurableInstanceContextProvider.cs
- FileLoadException.cs
- ContactManager.cs
- PartialList.cs
- HMACSHA384.cs
- LinqDataSourceDeleteEventArgs.cs
- ServiceModelConfigurationSectionCollection.cs
- Roles.cs
- SoapMessage.cs
- ReadContentAsBinaryHelper.cs
- COM2FontConverter.cs