Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Net / System / Net / Mail / LinkedResource.cs / 1 / LinkedResource.cs
using System; using System.IO; using System.Net.Mime; using System.Text; using System.Runtime.Versioning; namespace System.Net.Mail { public class LinkedResource : AttachmentBase { internal LinkedResource() { } [ResourceExposure(ResourceScope.Machine)] [ResourceConsumption(ResourceScope.Machine)] public LinkedResource(string fileName) : base(fileName) { } [ResourceExposure(ResourceScope.Machine)] [ResourceConsumption(ResourceScope.Machine)] public LinkedResource(string fileName, string mediaType) : base(fileName, mediaType) { } [ResourceExposure(ResourceScope.Machine)] [ResourceConsumption(ResourceScope.Machine)] public LinkedResource(string fileName, ContentType contentType) : base(fileName, contentType) { } public LinkedResource(Stream contentStream) : base(contentStream) { } public LinkedResource(Stream contentStream, string mediaType) : base(contentStream, mediaType) { } public LinkedResource(Stream contentStream, ContentType contentType) : base(contentStream, contentType) { } public Uri ContentLink { get { return ContentLocation; } set { ContentLocation = value; } } public static LinkedResource CreateLinkedResourceFromString(string content){ LinkedResource a = new LinkedResource(); a.SetContentFromString(content, null, String.Empty); return a; } public static LinkedResource CreateLinkedResourceFromString(string content, Encoding contentEncoding, string mediaType){ LinkedResource a = new LinkedResource(); a.SetContentFromString(content, contentEncoding, mediaType); return a; } public static LinkedResource CreateLinkedResourceFromString(string content, ContentType contentType){ LinkedResource a = new LinkedResource(); a.SetContentFromString(content, contentType); return a; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. using System; using System.IO; using System.Net.Mime; using System.Text; using System.Runtime.Versioning; namespace System.Net.Mail { public class LinkedResource : AttachmentBase { internal LinkedResource() { } [ResourceExposure(ResourceScope.Machine)] [ResourceConsumption(ResourceScope.Machine)] public LinkedResource(string fileName) : base(fileName) { } [ResourceExposure(ResourceScope.Machine)] [ResourceConsumption(ResourceScope.Machine)] public LinkedResource(string fileName, string mediaType) : base(fileName, mediaType) { } [ResourceExposure(ResourceScope.Machine)] [ResourceConsumption(ResourceScope.Machine)] public LinkedResource(string fileName, ContentType contentType) : base(fileName, contentType) { } public LinkedResource(Stream contentStream) : base(contentStream) { } public LinkedResource(Stream contentStream, string mediaType) : base(contentStream, mediaType) { } public LinkedResource(Stream contentStream, ContentType contentType) : base(contentStream, contentType) { } public Uri ContentLink { get { return ContentLocation; } set { ContentLocation = value; } } public static LinkedResource CreateLinkedResourceFromString(string content){ LinkedResource a = new LinkedResource(); a.SetContentFromString(content, null, String.Empty); return a; } public static LinkedResource CreateLinkedResourceFromString(string content, Encoding contentEncoding, string mediaType){ LinkedResource a = new LinkedResource(); a.SetContentFromString(content, contentEncoding, mediaType); return a; } public static LinkedResource CreateLinkedResourceFromString(string content, ContentType contentType){ LinkedResource a = new LinkedResource(); a.SetContentFromString(content, contentType); return a; } } } // 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
- LinqDataView.cs
- XPathNavigator.cs
- InvokeHandlers.cs
- TemplateBamlRecordReader.cs
- URL.cs
- NamedPermissionSet.cs
- TypefaceMap.cs
- Shape.cs
- Geometry3D.cs
- ReadOnlyMetadataCollection.cs
- KeySplineConverter.cs
- IgnoreSectionHandler.cs
- GlobalizationAssembly.cs
- SocketPermission.cs
- ConfigurationValidatorAttribute.cs
- ListBox.cs
- HandoffBehavior.cs
- SmiMetaData.cs
- ProxyWebPart.cs
- CodeAttributeDeclaration.cs
- TypeExtensionConverter.cs
- DataReaderContainer.cs
- ApplicationCommands.cs
- TextFindEngine.cs
- EntityClientCacheEntry.cs
- ObjectComplexPropertyMapping.cs
- RenderDataDrawingContext.cs
- DefaultObjectMappingItemCollection.cs
- FontFamily.cs
- WebPartHeaderCloseVerb.cs
- RuntimeEnvironment.cs
- SymmetricAlgorithm.cs
- XPathDocumentNavigator.cs
- WebPart.cs
- Compilation.cs
- StateDesigner.LayoutSelectionGlyph.cs
- Formatter.cs
- TraceContext.cs
- FontStyle.cs
- GridViewDeletedEventArgs.cs
- AnnotationObservableCollection.cs
- UIElement3D.cs
- CqlGenerator.cs
- TextBox.cs
- Margins.cs
- XmlSchemaAttributeGroup.cs
- ListViewDesigner.cs
- QueryStringConverter.cs
- PopupEventArgs.cs
- PropertyTabChangedEvent.cs
- XmlLoader.cs
- TimeZoneNotFoundException.cs
- AuthenticationModuleElement.cs
- VirtualDirectoryMappingCollection.cs
- LoginUtil.cs
- DatePickerDateValidationErrorEventArgs.cs
- ValidationErrorCollection.cs
- SystemResourceHost.cs
- SystemInformation.cs
- CloudCollection.cs
- UnicodeEncoding.cs
- TemplateControlBuildProvider.cs
- EndpointAddressProcessor.cs
- SignedInfo.cs
- Html32TextWriter.cs
- AppDomainManager.cs
- TraceUtility.cs
- CustomAttribute.cs
- ControlBuilderAttribute.cs
- BitmapEffectGroup.cs
- OptionalColumn.cs
- Button.cs
- SequentialWorkflowRootDesigner.cs
- EntityContainerEntitySet.cs
- WebResourceAttribute.cs
- ListViewCancelEventArgs.cs
- SerializationException.cs
- PermissionListSet.cs
- DateTimePicker.cs
- WSFederationHttpBindingElement.cs
- InstanceDataCollection.cs
- Fonts.cs
- Debug.cs
- Misc.cs
- ForceCopyBuildProvider.cs
- FormsAuthenticationUserCollection.cs
- SimpleTextLine.cs
- HostingEnvironmentException.cs
- DocumentViewerBaseAutomationPeer.cs
- IxmlLineInfo.cs
- IDispatchConstantAttribute.cs
- StyleCollection.cs
- String.cs
- DependencyPropertyKind.cs
- QilTypeChecker.cs
- AllMembershipCondition.cs
- GeneratedContractType.cs
- TaiwanLunisolarCalendar.cs
- CodeSubDirectoriesCollection.cs
- TcpAppDomainProtocolHandler.cs