| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /**
- * Namespace: System.Web.UI.WebControls
- * Class: AdCreatedEventArgs
- *
- * Author: Gaurav Vaish
- * Contact: <[email protected]>
- * Status: 10??%
- *
- * (C) Gaurav Vaish (2001)
- */
- using System;
- using System.Collections;
- using System.Web;
- using System.Web.UI;
- namespace System.Web.UI.WebControls
- {
- public sealed class AdCreatedEventArgs: EventArgs
- {
- private IDictionary adProperties;
- private string alternateText = string.Empty;
- private string imageUrl = string.Empty;
- private string navigateUrl = string.Empty;
- public AdCreatedEventArgs(IDictionary adProperties)
- {
- this.adProperties = adProperties;
- }
-
- public IDictionary AdProperties
- {
- get
- {
- return this.adProperties;
- }
- }
-
- public string AlternateText
- {
- get
- {
- return alternateText;
- }
- set
- {
- alternateText = value;
- }
- }
-
- public string ImageUrl
- {
- get
- {
- return imageUrl;
- }
- set
- {
- imageUrl = value;
- }
- }
-
- public string NavigateUrl
- {
- get
- {
- return navigateUrl;
- }
- set
- {
- navigateUrl = value;
- }
- }
- }
- }
|