Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / 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
- XmlTextEncoder.cs
- SqlDataSourceEnumerator.cs
- XmlSortKeyAccumulator.cs
- XmlAtomicValue.cs
- FileSystemInfo.cs
- HttpRuntime.cs
- CodeParameterDeclarationExpressionCollection.cs
- sqlnorm.cs
- DataServicePagingProviderWrapper.cs
- Canvas.cs
- TargetInvocationException.cs
- DeviceContext.cs
- ConfigurationStrings.cs
- Pair.cs
- VSWCFServiceContractGenerator.cs
- Evidence.cs
- ToolStripScrollButton.cs
- IdentifierCollection.cs
- StorageEndPropertyMapping.cs
- LineVisual.cs
- ResourceReferenceKeyNotFoundException.cs
- SharedMemory.cs
- DataContractJsonSerializerOperationBehavior.cs
- ADMembershipProvider.cs
- LayoutDump.cs
- StringSorter.cs
- Button.cs
- ListControlBuilder.cs
- DeviceSpecificDialogCachedState.cs
- ToolStripSplitButton.cs
- WhitespaceSignificantCollectionAttribute.cs
- Int32Storage.cs
- ImageButton.cs
- ImageClickEventArgs.cs
- XmlSchemaDatatype.cs
- CoreSwitches.cs
- FormsIdentity.cs
- LocatorGroup.cs
- JsonEnumDataContract.cs
- AlphabeticalEnumConverter.cs
- ScriptingProfileServiceSection.cs
- SchemaObjectWriter.cs
- TrackingLocation.cs
- Operators.cs
- LoadRetryHandler.cs
- TemplateInstanceAttribute.cs
- StructuredProperty.cs
- TokenCreationParameter.cs
- OleDbTransaction.cs
- DynamicArgumentDesigner.xaml.cs
- FormattedText.cs
- StateManagedCollection.cs
- StringAnimationBase.cs
- SymmetricKey.cs
- MeshGeometry3D.cs
- IPEndPointCollection.cs
- oledbmetadatacolumnnames.cs
- SqlDataSourceSelectingEventArgs.cs
- EncoderParameters.cs
- Converter.cs
- Stackframe.cs
- HttpListenerResponse.cs
- SemaphoreSecurity.cs
- XmlElementCollection.cs
- IPPacketInformation.cs
- DataTableMappingCollection.cs
- EntityProviderServices.cs
- XmlMapping.cs
- TrackBarRenderer.cs
- AutoCompleteStringCollection.cs
- SerialPinChanges.cs
- Focus.cs
- mansign.cs
- XmlSchemaComplexContent.cs
- ChangeConflicts.cs
- CodeGen.cs
- DbConnectionPoolIdentity.cs
- AspNetRouteServiceHttpHandler.cs
- StylusTip.cs
- RangeContentEnumerator.cs
- RetriableClipboard.cs
- OracleDataReader.cs
- PaintValueEventArgs.cs
- AvTraceFormat.cs
- MemoryMappedView.cs
- ObsoleteAttribute.cs
- XPathNodeIterator.cs
- TypeUtil.cs
- FastPropertyAccessor.cs
- HttpChannelFactory.cs
- BookmarkScopeHandle.cs
- ExtenderProvidedPropertyAttribute.cs
- SqlConnectionString.cs
- ListBox.cs
- ClrPerspective.cs
- AuthenticationModuleElementCollection.cs
- MsmqInputChannelBase.cs
- RSAPKCS1SignatureDeformatter.cs
- TagNameToTypeMapper.cs
- ParserOptions.cs