Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- TcpActivation.cs
- XdrBuilder.cs
- ProcessThread.cs
- IUnknownConstantAttribute.cs
- DecoderFallback.cs
- MonthCalendar.cs
- Trace.cs
- securitycriticaldata.cs
- FrameworkTextComposition.cs
- ParallelQuery.cs
- DependencyPropertyKey.cs
- DataGridViewLinkCell.cs
- AccessDataSourceView.cs
- AppDomainCompilerProxy.cs
- DbParameterCollectionHelper.cs
- UpdateCommand.cs
- XmlLanguage.cs
- DirectoryObjectSecurity.cs
- DllNotFoundException.cs
- OdbcHandle.cs
- IImplicitResourceProvider.cs
- SamlAdvice.cs
- DynamicExpression.cs
- sqlcontext.cs
- ComponentSerializationService.cs
- RemotingConfiguration.cs
- KerberosSecurityTokenAuthenticator.cs
- EntityConnection.cs
- IncrementalReadDecoders.cs
- UpdateManifestForBrowserApplication.cs
- keycontainerpermission.cs
- GestureRecognitionResult.cs
- RemoteWebConfigurationHost.cs
- ColorIndependentAnimationStorage.cs
- HybridObjectCache.cs
- RuleSettings.cs
- FormViewUpdateEventArgs.cs
- LoginUtil.cs
- DataView.cs
- DSASignatureFormatter.cs
- Operand.cs
- KnownTypesHelper.cs
- AdornerDecorator.cs
- PackageRelationshipSelector.cs
- CodeGenerator.cs
- SQLGuidStorage.cs
- FixedSOMContainer.cs
- FileClassifier.cs
- Header.cs
- SchemaComplexType.cs
- AutoGeneratedFieldProperties.cs
- CodeAccessSecurityEngine.cs
- RsaEndpointIdentity.cs
- ToggleProviderWrapper.cs
- MenuBindingsEditorForm.cs
- DesignTimeTemplateParser.cs
- ContextStaticAttribute.cs
- ScriptRegistrationManager.cs
- XPathNodeIterator.cs
- GridView.cs
- SafeFileHandle.cs
- ConfigsHelper.cs
- DrawItemEvent.cs
- Events.cs
- NonVisualControlAttribute.cs
- FunctionQuery.cs
- PointHitTestParameters.cs
- TrustSection.cs
- InlineUIContainer.cs
- TypeSystemProvider.cs
- LogWriteRestartAreaState.cs
- DateBoldEvent.cs
- LineInfo.cs
- StronglyTypedResourceBuilder.cs
- DoubleLinkList.cs
- keycontainerpermission.cs
- SpellerError.cs
- LocalizationComments.cs
- ExpressionConverter.cs
- TablePatternIdentifiers.cs
- BinaryParser.cs
- AssemblyAttributes.cs
- ExpressionConverter.cs
- Help.cs
- Win32.cs
- ConditionCollection.cs
- Choices.cs
- FullTextLine.cs
- Decimal.cs
- HttpDigestClientElement.cs
- XmlSchemaComplexContentRestriction.cs
- PackageFilter.cs
- DecimalConstantAttribute.cs
- WindowShowOrOpenTracker.cs
- BrowserInteropHelper.cs
- QilSortKey.cs
- AnimatedTypeHelpers.cs
- ConstructorArgumentAttribute.cs
- SessionKeyExpiredException.cs
- AssociativeAggregationOperator.cs