Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / MIT / System / Web / UI / MobileControls / Adapters / ChtmlImageAdapter.cs / 1305376 / ChtmlImageAdapter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System.Globalization; using System.Web.UI.MobileControls.Adapters; using System.Security.Permissions; #if COMPILING_FOR_SHIPPED_SOURCE namespace System.Web.UI.MobileControls.ShippedAdapterSource #else namespace System.Web.UI.MobileControls.Adapters #endif { /* * ChtmlImageAdapter class. */ ///[AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] [Obsolete("The System.Web.Mobile.dll assembly has been deprecated and should no longer be used. For information about how to develop ASP.NET mobile applications, see http://go.microsoft.com/fwlink/?LinkId=157231.")] public class ChtmlImageAdapter : HtmlImageAdapter { /// protected internal override void RenderImage(HtmlMobileTextWriter writer) { String source = Control.ImageUrl; if (source.StartsWith(Constants.SymbolProtocol, StringComparison.Ordinal) && (Device.SupportsIModeSymbols || Device.SupportsJPhoneSymbols)) { if (Device.SupportsIModeSymbols) { writer.Write(""); writer.Write( source.Substring(Constants.SymbolProtocol.Length)); writer.Write(";"); } else { // The ImageUrl should be in the format "symbol:xyyy", // where x is group picture character (either G, E or F), // and yyy (length can vary) is the picture's character // code (in decimal). String symbolChars = source.Substring( Constants.SymbolProtocol.Length); char code = DecimalStringToChar(symbolChars.Substring(1)); writer.Write("\u001B$"); writer.Write(Char.ToUpper(symbolChars[0], CultureInfo.InvariantCulture)); writer.Write(code); writer.Write('\u000F'); } } else { base.RenderImage(writer); } } // Convert decimal string "xxx" to '\u00xx' private char DecimalStringToChar(String decimalString) { int codeValue = 0; int adj = 1; for (int i = decimalString.Length - 1; i >= 0; i--) { codeValue += DecimalCharToInt(decimalString[i]) * adj; adj *= 10; } return (char) codeValue; } // Convert decimal char 'x' to decimal integer value x private int DecimalCharToInt(char decimalChar) { int i; if (decimalChar >= '0' && decimalChar <= '9') { i = decimalChar - '0'; } else { throw new ArgumentException( SR.GetString(SR.ChtmlImageAdapterDecimalCodeExpectedAfterGroupChar), "ImageUrl"); } return i; } /// protected override void AddAttributes(HtmlMobileTextWriter writer) { AddAccesskeyAttribute(writer); AddJPhoneMultiMediaAttributes(writer); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ClipboardProcessor.cs
- FormatVersion.cs
- ThreadAttributes.cs
- RenderCapability.cs
- FunctionDetailsReader.cs
- DataSetMappper.cs
- ActiveXSite.cs
- DataRowIndexBuffer.cs
- CompositeControl.cs
- SmtpReplyReaderFactory.cs
- BindingOperations.cs
- SymmetricSecurityProtocolFactory.cs
- QueryCacheManager.cs
- SimpleBitVector32.cs
- XmlUrlEditor.cs
- HttpRequestCacheValidator.cs
- DesignerOptionService.cs
- TraceListeners.cs
- safesecurityhelperavalon.cs
- ErrorInfoXmlDocument.cs
- SoapTransportImporter.cs
- DataGridViewAutoSizeModeEventArgs.cs
- AsyncOperationManager.cs
- SettingsProperty.cs
- DataBindingExpressionBuilder.cs
- ScriptModule.cs
- XmlSchemaSimpleContentRestriction.cs
- Baml2006KnownTypes.cs
- SizeAnimationClockResource.cs
- RenderingBiasValidation.cs
- XamlFigureLengthSerializer.cs
- LinqDataSource.cs
- MetadataPropertyCollection.cs
- XmlSchemaInclude.cs
- BorderGapMaskConverter.cs
- CommandExpr.cs
- NominalTypeEliminator.cs
- CompressStream.cs
- ControllableStoryboardAction.cs
- SiteMapNodeItemEventArgs.cs
- LogWriteRestartAreaState.cs
- LinearKeyFrames.cs
- ScopelessEnumAttribute.cs
- FileSystemEventArgs.cs
- XmlnsDictionary.cs
- SqlDelegatedTransaction.cs
- ToolStripContainer.cs
- FreeFormPanel.cs
- EnumType.cs
- XslCompiledTransform.cs
- DropDownList.cs
- DiscoveryDocument.cs
- CancellationTokenRegistration.cs
- GridViewColumnCollectionChangedEventArgs.cs
- Environment.cs
- AtomServiceDocumentSerializer.cs
- Clause.cs
- DataGridRow.cs
- ColorTransform.cs
- CommandEventArgs.cs
- XmlEntityReference.cs
- UnsafeNativeMethods.cs
- DeobfuscatingStream.cs
- CompilerInfo.cs
- ReachSerializableProperties.cs
- StringAnimationBase.cs
- HMACSHA512.cs
- GregorianCalendar.cs
- XmlLoader.cs
- TabControlDesigner.cs
- XmlDataSourceDesigner.cs
- GeometryModel3D.cs
- NotifyParentPropertyAttribute.cs
- BooleanFacetDescriptionElement.cs
- StickyNoteContentControl.cs
- FunctionDescription.cs
- XmlWriter.cs
- IImplicitResourceProvider.cs
- WorkflowDesignerMessageFilter.cs
- AssemblyLoader.cs
- SoapFault.cs
- X509Utils.cs
- XpsDocument.cs
- ImportDesigner.xaml.cs
- PropertyMappingExceptionEventArgs.cs
- Types.cs
- EventMap.cs
- MachineKeyValidationConverter.cs
- SpAudioStreamWrapper.cs
- PreviewKeyDownEventArgs.cs
- Point3DCollectionConverter.cs
- DefaultValueConverter.cs
- DbCommandDefinition.cs
- UnwrappedTypesXmlSerializerManager.cs
- SecurityElementBase.cs
- HtmlFormParameterReader.cs
- PasswordBoxAutomationPeer.cs
- RoutedUICommand.cs
- TokenizerHelper.cs
- TypeBuilder.cs