Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / NetFx35 / System.ServiceModel.Web / System / UriTemplatePathPartiallyEquivalentSet.cs / 1 / UriTemplatePathPartiallyEquivalentSet.cs
//----------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//---------------------------------------------------------------
namespace System
{
using System.Collections.Generic;
// This class was named UriTemplatePathEquivalentSet in the Orcas bits, where it used to
// represent a set of uri templates, which are equivalent in thier path. The introduction
// of terminal defaults, caused it to be no longer true; now it is representing a set
// of templates, which are equivalent in their path till a certian point, which is stored
// in the segmentsCount field. To highlight that fact the class was renamed as
// UriTemplatePathPartiallyEquivalentSet.
class UriTemplatePathPartiallyEquivalentSet
{
List> kvps;
int segmentsCount;
public UriTemplatePathPartiallyEquivalentSet(int segmentsCount)
{
this.segmentsCount = segmentsCount;
this.kvps = new List>();
}
public List> Items
{
get
{
return this.kvps;
}
}
public int SegmentsCount
{
get
{
return this.segmentsCount;
}
}
}
}
// 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
- AutomationProperties.cs
- _LazyAsyncResult.cs
- SubclassTypeValidator.cs
- DbConnectionInternal.cs
- TreeBuilder.cs
- RootCodeDomSerializer.cs
- ExpressionDumper.cs
- CurrentChangedEventManager.cs
- QilInvokeEarlyBound.cs
- BitmapEffect.cs
- designeractionbehavior.cs
- WSHttpBindingElement.cs
- ContainerControl.cs
- XmlRootAttribute.cs
- ISFClipboardData.cs
- TextViewBase.cs
- NetSectionGroup.cs
- CodeTypeReference.cs
- ObjectQueryExecutionPlan.cs
- StrongNamePublicKeyBlob.cs
- AssociationSet.cs
- PropertyItem.cs
- HostingMessageProperty.cs
- StringUtil.cs
- RtfToXamlLexer.cs
- DefaultBinder.cs
- TextEvent.cs
- PersonalizationEntry.cs
- FunctionUpdateCommand.cs
- ParseHttpDate.cs
- AnnouncementSendsAsyncResult.cs
- InputReportEventArgs.cs
- TransactionChannelFaultConverter.cs
- DiagnosticStrings.cs
- XmlSchemaAny.cs
- SemanticResultKey.cs
- UriExt.cs
- ImageMap.cs
- RegexWorker.cs
- FormDocumentDesigner.cs
- ProcessingInstructionAction.cs
- EventLogger.cs
- TraceContext.cs
- CustomCategoryAttribute.cs
- TypeDelegator.cs
- SystemInfo.cs
- ComplexPropertyEntry.cs
- GridViewRowEventArgs.cs
- Header.cs
- SafeNativeMethods.cs
- CacheDependency.cs
- EditorZoneBase.cs
- SocketManager.cs
- COMException.cs
- __Filters.cs
- FontSourceCollection.cs
- TypeSystem.cs
- StateManagedCollection.cs
- Errors.cs
- DataControlPagerLinkButton.cs
- PenThread.cs
- DataGridViewImageColumn.cs
- ComPlusInstanceProvider.cs
- IconBitmapDecoder.cs
- WebRequestModuleElement.cs
- MetadataFile.cs
- ServiceNotStartedException.cs
- TextServicesHost.cs
- SrgsElementFactory.cs
- RequestTimeoutManager.cs
- ParamArrayAttribute.cs
- PerformanceCounterCategory.cs
- BookmarkTable.cs
- documentsequencetextview.cs
- TextTreeUndoUnit.cs
- OdbcInfoMessageEvent.cs
- ImpersonationContext.cs
- HostingEnvironment.cs
- SelectingProviderEventArgs.cs
- QilStrConcatenator.cs
- EntityChangedParams.cs
- IISUnsafeMethods.cs
- InputLanguageProfileNotifySink.cs
- ValueQuery.cs
- DbFunctionCommandTree.cs
- BufferedReadStream.cs
- ChangesetResponse.cs
- KeyGestureConverter.cs
- CustomError.cs
- HttpCapabilitiesSectionHandler.cs
- StdValidatorsAndConverters.cs
- TreeViewEvent.cs
- EpmCustomContentDeSerializer.cs
- RectAnimationUsingKeyFrames.cs
- PartialCachingControl.cs
- DbParameterCollection.cs
- CustomTrackingQuery.cs
- SqlInternalConnectionTds.cs
- OrderedDictionary.cs
- Helpers.cs