Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / Compiler / CompilerResults.cs / 1305376 / CompilerResults.cs
//------------------------------------------------------------------------------ //// // //----------------------------------------------------------------------------- namespace System.CodeDom.Compiler { using System; using System.CodeDom; using System.Reflection; using System.Collections; using System.Collections.Specialized; using System.Security; using System.Security.Permissions; using System.Security.Policy; using System.Runtime.Serialization; using System.Runtime.Serialization.Formatters.Binary; using System.Runtime.Versioning; using System.IO; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [Serializable()] [PermissionSet(SecurityAction.InheritanceDemand, Name="FullTrust")] public class CompilerResults { private CompilerErrorCollection errors = new CompilerErrorCollection(); private StringCollection output = new StringCollection(); private Assembly compiledAssembly; private string pathToAssembly; private int nativeCompilerReturnValue; private TempFileCollection tempFiles; private Evidence evidence; ////// Represents the results /// of compilation from the compiler. /// ////// [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] public CompilerResults(TempFileCollection tempFiles) { this.tempFiles = tempFiles; } ////// Initializes a new instance of ////// that uses the specified /// temporary files. /// /// public TempFileCollection TempFiles { [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] get { return tempFiles; } [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] set { tempFiles = value; } } ////// Gets or sets the temporary files to use. /// ////// [Obsolete("CAS policy is obsolete and will be removed in a future release of the .NET Framework. Please see http://go2.microsoft.com/fwlink/?LinkId=131738 for more information.")] public Evidence Evidence { [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] get { Evidence e = null; if (evidence != null) e = evidence.Clone(); return e; } [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] [SecurityPermissionAttribute( SecurityAction.Demand, ControlEvidence = true )] set { if (value != null) evidence = value.Clone(); else evidence = null; } } ////// Set the evidence for partially trusted scenarios. /// ////// public Assembly CompiledAssembly { [SecurityPermissionAttribute(SecurityAction.Assert, Flags=SecurityPermissionFlag.ControlEvidence)] [ResourceExposure(ResourceScope.None)] [ResourceConsumption(ResourceScope.Machine, ResourceScope.Machine)] get { if (compiledAssembly == null && pathToAssembly != null) { AssemblyName assemName = new AssemblyName(); assemName.CodeBase = pathToAssembly; #pragma warning disable 618 // Load with evidence is obsolete - this warning is passed on via the Evidence property compiledAssembly = Assembly.Load(assemName,evidence); #pragma warning restore 618 } return compiledAssembly; } [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] set { compiledAssembly = value; } } ////// The compiled assembly. /// ////// public CompilerErrorCollection Errors { get { return errors; } } ////// Gets or sets the collection of compiler errors. /// ////// public StringCollection Output { [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] get { return output; } } ////// Gets or sets the compiler output messages. /// ////// public string PathToAssembly { [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] [ResourceExposure(ResourceScope.Machine)] get { return pathToAssembly; } [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] [ResourceExposure(ResourceScope.Machine)] set { pathToAssembly = value; } } ////// Gets or sets the path to the assembly. /// ////// public int NativeCompilerReturnValue { get { return nativeCompilerReturnValue; } [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] set { nativeCompilerReturnValue = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets or sets the compiler's return value. /// ///// // //----------------------------------------------------------------------------- namespace System.CodeDom.Compiler { using System; using System.CodeDom; using System.Reflection; using System.Collections; using System.Collections.Specialized; using System.Security; using System.Security.Permissions; using System.Security.Policy; using System.Runtime.Serialization; using System.Runtime.Serialization.Formatters.Binary; using System.Runtime.Versioning; using System.IO; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// [Serializable()] [PermissionSet(SecurityAction.InheritanceDemand, Name="FullTrust")] public class CompilerResults { private CompilerErrorCollection errors = new CompilerErrorCollection(); private StringCollection output = new StringCollection(); private Assembly compiledAssembly; private string pathToAssembly; private int nativeCompilerReturnValue; private TempFileCollection tempFiles; private Evidence evidence; ////// Represents the results /// of compilation from the compiler. /// ////// [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] public CompilerResults(TempFileCollection tempFiles) { this.tempFiles = tempFiles; } ////// Initializes a new instance of ////// that uses the specified /// temporary files. /// /// public TempFileCollection TempFiles { [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] get { return tempFiles; } [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] set { tempFiles = value; } } ////// Gets or sets the temporary files to use. /// ////// [Obsolete("CAS policy is obsolete and will be removed in a future release of the .NET Framework. Please see http://go2.microsoft.com/fwlink/?LinkId=131738 for more information.")] public Evidence Evidence { [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] get { Evidence e = null; if (evidence != null) e = evidence.Clone(); return e; } [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] [SecurityPermissionAttribute( SecurityAction.Demand, ControlEvidence = true )] set { if (value != null) evidence = value.Clone(); else evidence = null; } } ////// Set the evidence for partially trusted scenarios. /// ////// public Assembly CompiledAssembly { [SecurityPermissionAttribute(SecurityAction.Assert, Flags=SecurityPermissionFlag.ControlEvidence)] [ResourceExposure(ResourceScope.None)] [ResourceConsumption(ResourceScope.Machine, ResourceScope.Machine)] get { if (compiledAssembly == null && pathToAssembly != null) { AssemblyName assemName = new AssemblyName(); assemName.CodeBase = pathToAssembly; #pragma warning disable 618 // Load with evidence is obsolete - this warning is passed on via the Evidence property compiledAssembly = Assembly.Load(assemName,evidence); #pragma warning restore 618 } return compiledAssembly; } [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] set { compiledAssembly = value; } } ////// The compiled assembly. /// ////// public CompilerErrorCollection Errors { get { return errors; } } ////// Gets or sets the collection of compiler errors. /// ////// public StringCollection Output { [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] get { return output; } } ////// Gets or sets the compiler output messages. /// ////// public string PathToAssembly { [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] [ResourceExposure(ResourceScope.Machine)] get { return pathToAssembly; } [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] [ResourceExposure(ResourceScope.Machine)] set { pathToAssembly = value; } } ////// Gets or sets the path to the assembly. /// ////// public int NativeCompilerReturnValue { get { return nativeCompilerReturnValue; } [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] set { nativeCompilerReturnValue = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or sets the compiler's return value. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlQualifiedName.cs
- WeakHashtable.cs
- XmlSchemaImport.cs
- XPathDocument.cs
- GeneralTransform3DGroup.cs
- XsdBuildProvider.cs
- StreamInfo.cs
- EntityDesignerDataSourceView.cs
- Html32TextWriter.cs
- Rule.cs
- CompiledXpathExpr.cs
- FileReservationCollection.cs
- EventRoute.cs
- GenericIdentity.cs
- Int32AnimationBase.cs
- PathGeometry.cs
- SmtpFailedRecipientException.cs
- PasswordDeriveBytes.cs
- ResourcePermissionBaseEntry.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- PropertyConverter.cs
- SByteConverter.cs
- DesigntimeLicenseContext.cs
- ArrayList.cs
- _LocalDataStoreMgr.cs
- RtType.cs
- TypeRestriction.cs
- SqlMetaData.cs
- BufferedStream.cs
- RealizationDrawingContextWalker.cs
- NullToBooleanConverter.cs
- ThrowHelper.cs
- MethodBuilder.cs
- CodeNamespaceCollection.cs
- HttpDebugHandler.cs
- PriorityRange.cs
- DependencyObjectProvider.cs
- Metadata.cs
- FileDataSourceCache.cs
- TimeSpanValidatorAttribute.cs
- _OSSOCK.cs
- PtsPage.cs
- ComponentConverter.cs
- XmlSchema.cs
- CompositeDataBoundControl.cs
- versioninfo.cs
- ReadOnlyHierarchicalDataSourceView.cs
- DocumentScope.cs
- PrintDialogException.cs
- Crc32.cs
- HwndKeyboardInputProvider.cs
- HttpInputStream.cs
- SqlCommandBuilder.cs
- ConfigUtil.cs
- Window.cs
- LocalizabilityAttribute.cs
- SqlNode.cs
- DataSourceCache.cs
- SemanticBasicElement.cs
- UTF7Encoding.cs
- BamlLocalizabilityResolver.cs
- TemplateBindingExtension.cs
- InputLanguageCollection.cs
- PatternMatcher.cs
- smtpconnection.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- KeyMatchBuilder.cs
- UITypeEditor.cs
- DesignerRegion.cs
- SafeRsaProviderHandle.cs
- GridViewUpdatedEventArgs.cs
- ISAPIRuntime.cs
- DesignerLinkAdapter.cs
- EntityDataSourceWrapperCollection.cs
- SortedDictionary.cs
- ResourceReferenceExpressionConverter.cs
- Logging.cs
- PartManifestEntry.cs
- SystemBrushes.cs
- XmlAttributeCache.cs
- XmlSchemaSimpleType.cs
- RequestCachePolicy.cs
- CheckBoxFlatAdapter.cs
- TreeChangeInfo.cs
- EdmRelationshipNavigationPropertyAttribute.cs
- PathData.cs
- XmlSchemaAppInfo.cs
- DelimitedListTraceListener.cs
- ConstructorBuilder.cs
- BrushMappingModeValidation.cs
- DmlSqlGenerator.cs
- OleDbPropertySetGuid.cs
- ConversionContext.cs
- NumberFunctions.cs
- ProtectedProviderSettings.cs
- XmlCollation.cs
- UIElementParagraph.cs
- MobileCapabilities.cs
- XmlTextEncoder.cs
- StrokeCollection.cs