Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / NetFx35 / System.ServiceModel.Web / System / UriTemplateLiteralPathSegment.cs / 2 / UriTemplateLiteralPathSegment.cs
//---------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. //--------------------------------------------------------------- namespace System { using System.Collections.Specialized; using System.ServiceModel; using System.ServiceModel.Web; using System.Text; // thin wrapper around string; use type system to help ensure we // are doing canonicalization right/consistently class UriTemplateLiteralPathSegment : UriTemplatePathSegment, IComparable{ // segment doesn't store trailing slash readonly string segment; static Uri dummyUri = new Uri("http://localhost"); UriTemplateLiteralPathSegment(string segment) : base(segment, UriTemplatePartType.Literal, segment.EndsWith("/", StringComparison.Ordinal)) { Fx.Assert(segment != null, "bad literal segment"); if (this.EndsWithSlash) { this.segment = segment.Remove(segment.Length - 1); } else { this.segment = segment; } } public static new UriTemplateLiteralPathSegment CreateFromUriTemplate(string segment, UriTemplate template) { // run it through UriBuilder to escape-if-necessary it if (string.Compare(segment, "/", StringComparison.Ordinal) == 0) { // running an empty segment through UriBuilder has unexpected/wrong results return new UriTemplateLiteralPathSegment("/"); } if (segment.IndexOf(UriTemplate.WildcardPath, StringComparison.Ordinal) != -1) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new FormatException( SR2.GetString(SR2.UTInvalidWildcardInVariableOrLiteral, template.originalTemplate, UriTemplate.WildcardPath))); } // '*' is not usually escaped by the Uri\UriBuilder to %2a, since we forbid passing a // clear character and the workaroud is to pass the escaped form, we should replace the // escaped form with the regular one. segment = segment.Replace("%2a", "*").Replace("%2A", "*"); UriBuilder ub = new UriBuilder(dummyUri); ub.Path = segment; string escapedIfNecessarySegment = ub.Uri.AbsolutePath.Substring(1); if (escapedIfNecessarySegment == string.Empty) { // This path through UriBuilder will sometimes consume various segments // such as '../' and './'. When this happens and the result is an empty // string, we should just throw and tell the user we don't handle that. throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument("segment", SR2.GetString(SR2.UTInvalidFormatSegmentOrQueryPart, segment)); } return new UriTemplateLiteralPathSegment(escapedIfNecessarySegment); } public static UriTemplateLiteralPathSegment CreateFromWireData(string segment) { return new UriTemplateLiteralPathSegment(segment); } public string AsUnescapedString() { Fx.Assert(this.segment != null, "this should only be called by Bind\\Lookup"); return Uri.UnescapeDataString(this.segment); } public override void Bind(string[] values, ref int valueIndex, StringBuilder path) { if (this.EndsWithSlash) { path.AppendFormat("{0}/", AsUnescapedString()); } else { path.Append(AsUnescapedString()); } } public int CompareTo(UriTemplateLiteralPathSegment other) { return StringComparer.OrdinalIgnoreCase.Compare(this.segment, other.segment); } public override bool Equals(object obj) { UriTemplateLiteralPathSegment lps = obj as UriTemplateLiteralPathSegment; if (lps == null) { Fx.Assert("why would we ever call this?"); return false; } else { return ((this.EndsWithSlash == lps.EndsWithSlash) && StringComparer.OrdinalIgnoreCase.Equals(this.segment, lps.segment)); } } public override int GetHashCode() { return StringComparer.OrdinalIgnoreCase.GetHashCode(this.segment); } public override bool IsEquivalentTo(UriTemplatePathSegment other, bool ignoreTrailingSlash) { if (other == null) { Fx.Assert("why would we ever call this?"); return false; } if (other.Nature != UriTemplatePartType.Literal) { return false; } UriTemplateLiteralPathSegment otherAsLiteral = other as UriTemplateLiteralPathSegment; Fx.Assert(otherAsLiteral != null, "The nature requires that this will be OK"); return IsMatch(otherAsLiteral, ignoreTrailingSlash); } public override bool IsMatch(UriTemplateLiteralPathSegment segment, bool ignoreTrailingSlash) { if (!ignoreTrailingSlash && (segment.EndsWithSlash != this.EndsWithSlash)) { return false; } return (CompareTo(segment) == 0); } public bool IsNullOrEmpty() { return string.IsNullOrEmpty(this.segment); } public override void Lookup(string segment, NameValueCollection boundParameters) { Fx.Assert(StringComparer.OrdinalIgnoreCase.Compare(AsUnescapedString(), segment) == 0, "How can that be? Lookup is expected to be called after IsMatch"); } } } // 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
- InfoCardRequestException.cs
- Stack.cs
- LockCookie.cs
- NativeMethods.cs
- CurrentChangingEventManager.cs
- BamlVersionHeader.cs
- ZoneMembershipCondition.cs
- DescendentsWalkerBase.cs
- TreeSet.cs
- ExtendedPropertiesHandler.cs
- TypeSource.cs
- SqlTriggerAttribute.cs
- ServicePoint.cs
- PolygonHotSpot.cs
- PublishLicense.cs
- FirstMatchCodeGroup.cs
- EntityModelBuildProvider.cs
- PipelineModuleStepContainer.cs
- Header.cs
- ReflectionUtil.cs
- CodeGotoStatement.cs
- Regex.cs
- XslNumber.cs
- PropertyKey.cs
- X509Certificate2Collection.cs
- ClientSettingsStore.cs
- DesignerCalendarAdapter.cs
- StaticSiteMapProvider.cs
- VirtualizingStackPanel.cs
- DataSet.cs
- safex509handles.cs
- AuthStoreRoleProvider.cs
- DataServiceQueryProvider.cs
- xsdvalidator.cs
- ViewStateException.cs
- ParagraphVisual.cs
- ClientTarget.cs
- DoubleAnimationBase.cs
- TransferRequestHandler.cs
- PropertyGeneratedEventArgs.cs
- UnicodeEncoding.cs
- DataSourceControlBuilder.cs
- BoundPropertyEntry.cs
- PropertyGridEditorPart.cs
- ToolBarPanel.cs
- ConfigurationSectionGroup.cs
- MsmqIntegrationAppDomainProtocolHandler.cs
- ThaiBuddhistCalendar.cs
- WhitespaceRuleReader.cs
- WinInetCache.cs
- Lease.cs
- XmlCharCheckingReader.cs
- ManagementException.cs
- PagesSection.cs
- AncillaryOps.cs
- RSAProtectedConfigurationProvider.cs
- ImageAnimator.cs
- UrlMappingsModule.cs
- SystemIPv6InterfaceProperties.cs
- IDictionary.cs
- PolyQuadraticBezierSegmentFigureLogic.cs
- GetPageNumberCompletedEventArgs.cs
- CodeGroup.cs
- TabPage.cs
- AutomationPatternInfo.cs
- CodeLabeledStatement.cs
- TraceHandlerErrorFormatter.cs
- ControlBuilderAttribute.cs
- WindowsGraphicsWrapper.cs
- GridViewColumn.cs
- WebChannelFactory.cs
- PropertyPath.cs
- FormatSettings.cs
- StorageEndPropertyMapping.cs
- SqlDataSourceStatusEventArgs.cs
- StackBuilderSink.cs
- ToolStripDropTargetManager.cs
- EmptyEnumerator.cs
- ListViewItemMouseHoverEvent.cs
- TiffBitmapEncoder.cs
- WindowsSpinner.cs
- TabControlEvent.cs
- UDPClient.cs
- ConfigurationValues.cs
- InvalidMessageContractException.cs
- SelectionBorderGlyph.cs
- TreePrinter.cs
- PrintingPermissionAttribute.cs
- DynamicRenderer.cs
- TransformProviderWrapper.cs
- TrackingValidationObjectDictionary.cs
- IISMapPath.cs
- ComEventsSink.cs
- StorageComplexPropertyMapping.cs
- AbsoluteQuery.cs
- WebConfigManager.cs
- TargetException.cs
- TextDecorationUnitValidation.cs
- DropShadowEffect.cs
- DropDownButton.cs