Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / EmbeddedMailObject.cs / 2 / EmbeddedMailObject.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System.Security.Permissions; using System.Web.Mail; using System.Collections; using System.ComponentModel; using System.Globalization; using System.IO; using System.Drawing.Design; using System.Web; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [TypeConverter(typeof(EmbeddedMailObjectTypeConverter))] public sealed class EmbeddedMailObject { private string _path; private string _name; public EmbeddedMailObject() { } public EmbeddedMailObject(string name, string path) { Name = name; Path = path; } [ WebCategory("Behavior"), DefaultValue(""), WebSysDescription(SR.EmbeddedMailObject_Name), NotifyParentProperty(true) ] public string Name { get { return (_name != null) ? _name : String.Empty; } set { _name = value; } } [ WebCategory("Behavior"), DefaultValue(""), WebSysDescription(SR.EmbeddedMailObject_Path), Editor("System.Web.UI.Design.MailFileEditor, " + AssemblyRef.SystemDesign, typeof(UITypeEditor)), NotifyParentProperty(true), UrlProperty(), ] public string Path { get { return (_path == null) ? String.Empty : _path; } set { _path = value; } } private sealed class EmbeddedMailObjectTypeConverter : TypeConverter { public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == typeof(string)) { return "EmbeddedMailObject"; } return base.ConvertTo(context, culture, value, destinationType); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System.Security.Permissions; using System.Web.Mail; using System.Collections; using System.ComponentModel; using System.Globalization; using System.IO; using System.Drawing.Design; using System.Web; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [TypeConverter(typeof(EmbeddedMailObjectTypeConverter))] public sealed class EmbeddedMailObject { private string _path; private string _name; public EmbeddedMailObject() { } public EmbeddedMailObject(string name, string path) { Name = name; Path = path; } [ WebCategory("Behavior"), DefaultValue(""), WebSysDescription(SR.EmbeddedMailObject_Name), NotifyParentProperty(true) ] public string Name { get { return (_name != null) ? _name : String.Empty; } set { _name = value; } } [ WebCategory("Behavior"), DefaultValue(""), WebSysDescription(SR.EmbeddedMailObject_Path), Editor("System.Web.UI.Design.MailFileEditor, " + AssemblyRef.SystemDesign, typeof(UITypeEditor)), NotifyParentProperty(true), UrlProperty(), ] public string Path { get { return (_path == null) ? String.Empty : _path; } set { _path = value; } } private sealed class EmbeddedMailObjectTypeConverter : TypeConverter { public override object ConvertTo(ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { if (destinationType == typeof(string)) { return "EmbeddedMailObject"; } return base.ConvertTo(context, culture, value, destinationType); } } } } // 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
- StandardOleMarshalObject.cs
- QueuePathDialog.cs
- DrawingAttributesDefaultValueFactory.cs
- BadImageFormatException.cs
- RepeatInfo.cs
- ComponentFactoryHelpers.cs
- ConfigurationManagerHelper.cs
- ListViewGroupConverter.cs
- PrinterUnitConvert.cs
- RootBrowserWindowProxy.cs
- TraceInternal.cs
- FileDataSourceCache.cs
- RequestQueryParser.cs
- ClientRolePrincipal.cs
- XPathArrayIterator.cs
- ThreadPool.cs
- XsdDuration.cs
- Crypto.cs
- QilUnary.cs
- ExpressionEditorAttribute.cs
- ThicknessAnimationBase.cs
- RenderOptions.cs
- SimpleWebHandlerParser.cs
- StrokeRenderer.cs
- TokenBasedSet.cs
- ILGenerator.cs
- IPAddress.cs
- hresults.cs
- BatchWriter.cs
- Vector3D.cs
- UdpSocketReceiveManager.cs
- BitmapInitialize.cs
- ObjectDataSourceEventArgs.cs
- ToolStripTextBox.cs
- ActivationArguments.cs
- GenericPrincipal.cs
- AppDomainCompilerProxy.cs
- RequiredFieldValidator.cs
- QuaternionValueSerializer.cs
- UpDownBase.cs
- FormatSettings.cs
- MeshGeometry3D.cs
- OracleBinary.cs
- ControlLocalizer.cs
- RtfToXamlLexer.cs
- XmlCodeExporter.cs
- InlineUIContainer.cs
- UnsafeNativeMethods.cs
- BaseDataBoundControl.cs
- IPAddress.cs
- GetPageCompletedEventArgs.cs
- ModulesEntry.cs
- DataGridHeaderBorder.cs
- DisableDpiAwarenessAttribute.cs
- Figure.cs
- SetterBase.cs
- MultiAsyncResult.cs
- WindowsPen.cs
- XmlTypeAttribute.cs
- WindowsSpinner.cs
- SqlBuffer.cs
- SortDescriptionCollection.cs
- IisTraceWebEventProvider.cs
- CompositeFontParser.cs
- BatchParser.cs
- BinaryWriter.cs
- ConfigurationValidatorAttribute.cs
- Marshal.cs
- InvalidWorkflowException.cs
- Quaternion.cs
- DesignerOptionService.cs
- EpmHelper.cs
- ConstraintManager.cs
- WsdlHelpGeneratorElement.cs
- SQLBinary.cs
- MergeExecutor.cs
- ResourceDisplayNameAttribute.cs
- FrameworkPropertyMetadata.cs
- WindowInteractionStateTracker.cs
- BufferBuilder.cs
- OverflowException.cs
- Assert.cs
- InfoCardXmlSerializer.cs
- DynamicResourceExtension.cs
- XmlDocumentType.cs
- HwndSourceKeyboardInputSite.cs
- DataGridPageChangedEventArgs.cs
- TypefaceMetricsCache.cs
- EntityDataSourceContainerNameItem.cs
- GetBrowserTokenRequest.cs
- SoapTypeAttribute.cs
- SubtreeProcessor.cs
- FontFaceLayoutInfo.cs
- ClientSettingsStore.cs
- EventRouteFactory.cs
- BeginSelectCardRequest.cs
- SqlGatherProducedAliases.cs
- TransactionManager.cs
- Propagator.Evaluator.cs
- UnsafeNativeMethods.cs