Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Shared / MS / Internal / ResourceIDHelper.cs / 1 / ResourceIDHelper.cs
using System; using System.Text; using System.Globalization; namespace MS.Internal { internal static class ResourceIDHelper { // // Convert relative path to the right format which is used // as ResourceID. // MarkupCompiler, ResXGen, Loader will call this method internally. // static internal string GetResourceIDFromRelativePath(string relPath) { // It is important that relPath not contain a fragment or query at this point // // Currently this will always be true because // 1) The resources listed in the .proj file are tested against the filesystem // to see if they exist. If a query or fragment was present this test would fail. // 2) In the new loader the container apis make sure that the fragment and query are // stripped from the Uri to form the part name which is used to load the resource Uri baseUri = new Uri("http://foo/"); Uri srcUri = new Uri(baseUri, relPath.Replace("#", "%23")); return GetResourceIDFromUri(baseUri, srcUri); } // // This is the central place that returns right ResourceID for // the passed SourceUri. // static private string GetResourceIDFromUri(Uri baseUri, Uri sourceUri) { string resourceID = String.Empty; // // Extracts and returns the resource ID from a URI. // If the source URI is under the baseUri, the resource ID is the URI // after the baseUri and any fragment or query has been removed. // The resource ID is always converted to lower case. // // If the sourceUri is not relative to baseUri, Emtpy string is returned // as resource id. // if (baseUri.IsAbsoluteUri == false || sourceUri.IsAbsoluteUri == false) { // // if any passed Uri is not absolute uri, return empty string here. // return resourceID; } if (baseUri.Scheme == sourceUri.Scheme && baseUri.Host == sourceUri.Host) { // // Get the escaped Path part, Path doesn't include Query and Fragment. // string basePath = baseUri.GetComponents(UriComponents.Path, UriFormat.UriEscaped); string sourcePath = sourceUri.GetComponents(UriComponents.Path, UriFormat.UriEscaped); // // Always lower case the Path string. // basePath = basePath.ToLower(CultureInfo.InvariantCulture); sourcePath = sourcePath.ToLower(CultureInfo.InvariantCulture); if (sourcePath.StartsWith(basePath, StringComparison.OrdinalIgnoreCase)) { resourceID = sourcePath.Substring(basePath.Length); } } return resourceID; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; using System.Text; using System.Globalization; namespace MS.Internal { internal static class ResourceIDHelper { // // Convert relative path to the right format which is used // as ResourceID. // MarkupCompiler, ResXGen, Loader will call this method internally. // static internal string GetResourceIDFromRelativePath(string relPath) { // It is important that relPath not contain a fragment or query at this point // // Currently this will always be true because // 1) The resources listed in the .proj file are tested against the filesystem // to see if they exist. If a query or fragment was present this test would fail. // 2) In the new loader the container apis make sure that the fragment and query are // stripped from the Uri to form the part name which is used to load the resource Uri baseUri = new Uri("http://foo/"); Uri srcUri = new Uri(baseUri, relPath.Replace("#", "%23")); return GetResourceIDFromUri(baseUri, srcUri); } // // This is the central place that returns right ResourceID for // the passed SourceUri. // static private string GetResourceIDFromUri(Uri baseUri, Uri sourceUri) { string resourceID = String.Empty; // // Extracts and returns the resource ID from a URI. // If the source URI is under the baseUri, the resource ID is the URI // after the baseUri and any fragment or query has been removed. // The resource ID is always converted to lower case. // // If the sourceUri is not relative to baseUri, Emtpy string is returned // as resource id. // if (baseUri.IsAbsoluteUri == false || sourceUri.IsAbsoluteUri == false) { // // if any passed Uri is not absolute uri, return empty string here. // return resourceID; } if (baseUri.Scheme == sourceUri.Scheme && baseUri.Host == sourceUri.Host) { // // Get the escaped Path part, Path doesn't include Query and Fragment. // string basePath = baseUri.GetComponents(UriComponents.Path, UriFormat.UriEscaped); string sourcePath = sourceUri.GetComponents(UriComponents.Path, UriFormat.UriEscaped); // // Always lower case the Path string. // basePath = basePath.ToLower(CultureInfo.InvariantCulture); sourcePath = sourcePath.ToLower(CultureInfo.InvariantCulture); if (sourcePath.StartsWith(basePath, StringComparison.OrdinalIgnoreCase)) { resourceID = sourcePath.Substring(basePath.Length); } } return resourceID; } } } // 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
- Viewport3DAutomationPeer.cs
- SecUtil.cs
- DelegatedStream.cs
- JsonObjectDataContract.cs
- DirectionalLight.cs
- NeutralResourcesLanguageAttribute.cs
- BitmapEffectRenderDataResource.cs
- WmpBitmapDecoder.cs
- HttpRawResponse.cs
- PagePropertiesChangingEventArgs.cs
- SqlEnums.cs
- OdbcTransaction.cs
- GenerateScriptTypeAttribute.cs
- DeflateInput.cs
- Paragraph.cs
- ErrorFormatter.cs
- SchemaExporter.cs
- ProgressBarAutomationPeer.cs
- LongValidatorAttribute.cs
- MenuItem.cs
- HtmlEmptyTagControlBuilder.cs
- MemberJoinTreeNode.cs
- TextFindEngine.cs
- UserPersonalizationStateInfo.cs
- SecurityRuntime.cs
- MembershipPasswordException.cs
- OdbcEnvironmentHandle.cs
- RectConverter.cs
- XmlChildEnumerator.cs
- TableRowCollection.cs
- SynchronizedInputProviderWrapper.cs
- StylusPointPropertyUnit.cs
- DataGridViewHitTestInfo.cs
- WebPartMinimizeVerb.cs
- SrgsElementFactory.cs
- XmlSchemaSimpleContent.cs
- CharacterMetrics.cs
- EDesignUtil.cs
- InlineUIContainer.cs
- FormatVersion.cs
- UsernameTokenFactoryCredential.cs
- TraceContextRecord.cs
- XhtmlTextWriter.cs
- LineBreak.cs
- OperatingSystem.cs
- WebRequestModulesSection.cs
- Assembly.cs
- TextSchema.cs
- UnionExpr.cs
- TypographyProperties.cs
- StrokeIntersection.cs
- addressfiltermode.cs
- RegexFCD.cs
- SecurityException.cs
- DataServiceQuery.cs
- Window.cs
- SynchronizedInputPattern.cs
- InfoCardBaseException.cs
- Cursor.cs
- HttpCookieCollection.cs
- ContourSegment.cs
- HostedHttpRequestAsyncResult.cs
- SchemaCollectionCompiler.cs
- DBParameter.cs
- SignedXml.cs
- SrgsToken.cs
- StateItem.cs
- XmlSchemaSimpleContentRestriction.cs
- StringPropertyBuilder.cs
- DispatchWrapper.cs
- FastPropertyAccessor.cs
- UInt16Storage.cs
- MachineKeyConverter.cs
- Vector3D.cs
- FileChangesMonitor.cs
- BitmapEffectInputConnector.cs
- SelfIssuedTokenFactoryCredential.cs
- HttpStreamFormatter.cs
- dsa.cs
- KeyInstance.cs
- CharConverter.cs
- IisHelper.cs
- AssociationTypeEmitter.cs
- FileUpload.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- DataControlField.cs
- RuleSetReference.cs
- MimeObjectFactory.cs
- TypeConstant.cs
- PropertyItemInternal.cs
- D3DImage.cs
- HandledMouseEvent.cs
- unitconverter.cs
- StructuredTypeInfo.cs
- HMACSHA384.cs
- ConnectionPoint.cs
- PeerCollaborationPermission.cs
- DocumentAutomationPeer.cs
- ObjectViewQueryResultData.cs
- GregorianCalendar.cs