Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / AdCreatedEventArgs.cs / 1 / AdCreatedEventArgs.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System.Collections; using System.Collections.Specialized; using System.Globalization; using System.Security.Permissions; using System.Web.Util; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class AdCreatedEventArgs : EventArgs { internal const string ImageUrlElement = "ImageUrl"; internal const string NavigateUrlElement = "NavigateUrl"; internal const string AlternateTextElement = "AlternateText"; private const string WidthElement = "Width"; private const string HeightElement = "Height"; private string imageUrl = String.Empty; private string navigateUrl = String.Empty; private string alternateText = String.Empty; private IDictionary adProperties; private bool hasHeight; private bool hasWidth; private Unit width; private Unit height; ///Provides data for the ///event. /// public AdCreatedEventArgs(IDictionary adProperties) : this(adProperties, null, null, null) { } ///Initializes a new instance of the ////// class. /// Internal constructor for making use of parameter keys if /// provided. A internal AdCreatedEventArgs(IDictionary adProperties, String imageUrlField, String navigateUrlField, String alternateTextField) { if (adProperties != null) { // Initialize the other properties from the dictionary this.adProperties = adProperties; this.imageUrl = GetAdProperty(ImageUrlElement, imageUrlField); this.navigateUrl = GetAdProperty(NavigateUrlElement, navigateUrlField); this.alternateText = GetAdProperty(AlternateTextElement, alternateTextField); // hasWidth = GetUnitValue(adProperties, WidthElement, ref width); hasHeight = GetUnitValue(adProperties, HeightElement, ref height); } } /// /// public IDictionary AdProperties { get { return adProperties; } } ///Gets the dictionary containing all the advertisement /// properties extracted from the XML file after the ////// event is raised. /// public string AlternateText { get { return alternateText; } set { alternateText = value; } } internal bool HasHeight { get { return hasHeight; } } internal bool HasWidth { get { return hasWidth; } } internal Unit Height { get { return height; } } ////// Specifies the alternate text and tooltip (if browser supported) that will be /// rendered in the ///. /// public string ImageUrl { get { return imageUrl; } set { imageUrl = value; } } ///Specifies the image that will be rendered in the ///. /// public string NavigateUrl { get { return navigateUrl; } set { navigateUrl = value; } } internal Unit Width { get { return width; } } private String GetAdProperty(String defaultIndex, String keyIndex) { String index = (String.IsNullOrEmpty(keyIndex)) ? defaultIndex : keyIndex; String property = (adProperties == null) ? null : (String) adProperties[index]; return (property == null) ? String.Empty : property; } private bool GetUnitValue(IDictionary properties, String keyIndex, ref Unit unitValue) { Debug.Assert(properties != null); string temp = properties[keyIndex] as string; if (!String.IsNullOrEmpty(temp)) { try { unitValue = Unit.Parse(temp, CultureInfo.InvariantCulture); } catch { throw new FormatException( SR.GetString( SR.AdRotator_invalid_integer_format, temp, keyIndex, typeof(Unit).FullName)); } return true; } return false; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //Specifies the target URL that will be rendered in the /// ///. // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System.Collections; using System.Collections.Specialized; using System.Globalization; using System.Security.Permissions; using System.Web.Util; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class AdCreatedEventArgs : EventArgs { internal const string ImageUrlElement = "ImageUrl"; internal const string NavigateUrlElement = "NavigateUrl"; internal const string AlternateTextElement = "AlternateText"; private const string WidthElement = "Width"; private const string HeightElement = "Height"; private string imageUrl = String.Empty; private string navigateUrl = String.Empty; private string alternateText = String.Empty; private IDictionary adProperties; private bool hasHeight; private bool hasWidth; private Unit width; private Unit height; ///Provides data for the ///event. /// public AdCreatedEventArgs(IDictionary adProperties) : this(adProperties, null, null, null) { } ///Initializes a new instance of the ////// class. /// Internal constructor for making use of parameter keys if /// provided. A internal AdCreatedEventArgs(IDictionary adProperties, String imageUrlField, String navigateUrlField, String alternateTextField) { if (adProperties != null) { // Initialize the other properties from the dictionary this.adProperties = adProperties; this.imageUrl = GetAdProperty(ImageUrlElement, imageUrlField); this.navigateUrl = GetAdProperty(NavigateUrlElement, navigateUrlField); this.alternateText = GetAdProperty(AlternateTextElement, alternateTextField); // hasWidth = GetUnitValue(adProperties, WidthElement, ref width); hasHeight = GetUnitValue(adProperties, HeightElement, ref height); } } /// /// public IDictionary AdProperties { get { return adProperties; } } ///Gets the dictionary containing all the advertisement /// properties extracted from the XML file after the ////// event is raised. /// public string AlternateText { get { return alternateText; } set { alternateText = value; } } internal bool HasHeight { get { return hasHeight; } } internal bool HasWidth { get { return hasWidth; } } internal Unit Height { get { return height; } } ////// Specifies the alternate text and tooltip (if browser supported) that will be /// rendered in the ///. /// public string ImageUrl { get { return imageUrl; } set { imageUrl = value; } } ///Specifies the image that will be rendered in the ///. /// public string NavigateUrl { get { return navigateUrl; } set { navigateUrl = value; } } internal Unit Width { get { return width; } } private String GetAdProperty(String defaultIndex, String keyIndex) { String index = (String.IsNullOrEmpty(keyIndex)) ? defaultIndex : keyIndex; String property = (adProperties == null) ? null : (String) adProperties[index]; return (property == null) ? String.Empty : property; } private bool GetUnitValue(IDictionary properties, String keyIndex, ref Unit unitValue) { Debug.Assert(properties != null); string temp = properties[keyIndex] as string; if (!String.IsNullOrEmpty(temp)) { try { unitValue = Unit.Parse(temp, CultureInfo.InvariantCulture); } catch { throw new FormatException( SR.GetString( SR.AdRotator_invalid_integer_format, temp, keyIndex, typeof(Unit).FullName)); } return true; } return false; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.Specifies the target URL that will be rendered in the /// ///.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RootBrowserWindowAutomationPeer.cs
- XslCompiledTransform.cs
- PingReply.cs
- ScriptControlManager.cs
- CompilerScopeManager.cs
- GridViewRowCollection.cs
- XmlElementElementCollection.cs
- XamlSerializer.cs
- IntellisenseTextBox.designer.cs
- TextCompositionManager.cs
- ellipse.cs
- ImageAutomationPeer.cs
- ExpressionEvaluator.cs
- PageWrapper.cs
- BeginSelectCardRequest.cs
- EventLog.cs
- PropertyExpression.cs
- TextServicesProperty.cs
- TdsParserHelperClasses.cs
- XmlILModule.cs
- CodeTypeDeclarationCollection.cs
- TextDecoration.cs
- ASCIIEncoding.cs
- GrowingArray.cs
- XhtmlBasicLiteralTextAdapter.cs
- OleTxTransaction.cs
- ZipArchive.cs
- ItemType.cs
- ProxyGenerationError.cs
- Vector3DCollectionConverter.cs
- HttpConfigurationContext.cs
- DataListGeneralPage.cs
- CommentEmitter.cs
- DataGridViewElement.cs
- Point4DConverter.cs
- DocumentSchemaValidator.cs
- PageTheme.cs
- TextRange.cs
- ProjectedSlot.cs
- TextDecorationCollectionConverter.cs
- SimpleFieldTemplateFactory.cs
- PageBuildProvider.cs
- XmlILAnnotation.cs
- ScriptHandlerFactory.cs
- BaseTreeIterator.cs
- EdgeProfileValidation.cs
- ObjectToModelValueConverter.cs
- SQLDateTimeStorage.cs
- ProfileEventArgs.cs
- ClientBuildManagerCallback.cs
- WinInetCache.cs
- ParameterElementCollection.cs
- IisTraceWebEventProvider.cs
- FlowDocumentPaginator.cs
- ButtonBase.cs
- PageEventArgs.cs
- XamlWrappingReader.cs
- WSDualHttpSecurity.cs
- DrawingBrush.cs
- TemplateBindingExpressionConverter.cs
- _LocalDataStore.cs
- MailDefinition.cs
- SizeAnimation.cs
- SHA384.cs
- CaseExpr.cs
- SqlDataSourceEnumerator.cs
- WebPartVerb.cs
- BindingNavigatorDesigner.cs
- Tablet.cs
- StrictModeSecurityHeaderElementInferenceEngine.cs
- TabPage.cs
- IApplicationTrustManager.cs
- DataGridView.cs
- HotSpotCollectionEditor.cs
- SiteMapHierarchicalDataSourceView.cs
- TypedElement.cs
- MailAddressParser.cs
- SoundPlayer.cs
- FlowDocumentPage.cs
- ValueQuery.cs
- DBPropSet.cs
- WindowAutomationPeer.cs
- NTAccount.cs
- XmlSchemaChoice.cs
- ListViewItemEventArgs.cs
- ToolStripItemCollection.cs
- ObjectFullSpanRewriter.cs
- DataGridViewCellStyleConverter.cs
- TouchPoint.cs
- SmtpReplyReaderFactory.cs
- __TransparentProxy.cs
- HttpWebRequestElement.cs
- UpdateInfo.cs
- wgx_commands.cs
- TableLayoutPanelResizeGlyph.cs
- PrintingPermission.cs
- WebRequestModuleElementCollection.cs
- KerberosSecurityTokenAuthenticator.cs
- ContextActivityUtils.cs
- ColorPalette.cs