Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Reflection / Emit / ModuleBuilderData.cs / 1305376 / ModuleBuilderData.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// //[....] // namespace System.Reflection.Emit { using System; using System.Diagnostics.Contracts; using System.Globalization; using System.IO; using System.Reflection; using System.Runtime.Versioning; // This is a package private class. This class hold all of the managed // data member for ModuleBuilder. Note that what ever data members added to // this class cannot be accessed from the EE. [Serializable] internal class ModuleBuilderData { [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.Machine)] [ResourceConsumption(ResourceScope.Machine)] internal ModuleBuilderData(ModuleBuilder module, String strModuleName, String strFileName, int tkFile) { m_globalTypeBuilder = new TypeBuilder(module); m_module = module; m_tkFile = tkFile; InitNames(strModuleName, strFileName); } // Initialize module and file names. [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.Machine)] [ResourceConsumption(ResourceScope.Machine)] private void InitNames(String strModuleName, String strFileName) { m_strModuleName = strModuleName; if (strFileName == null) { // fake a transient module file name m_strFileName = strModuleName; } else { String strExtension = Path.GetExtension(strFileName); if (strExtension == null || strExtension == String.Empty) { // This is required by our loader. It cannot load module file that does not have file extension. throw new ArgumentException(Environment.GetResourceString("Argument_NoModuleFileExtension", strFileName)); } m_strFileName = strFileName; } } // This is a method for changing module and file name of the manifest module (created by default for // each assembly). [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.Machine)] [ResourceConsumption(ResourceScope.Machine)] internal virtual void ModifyModuleName(String strModuleName) { Contract.Assert(m_strModuleName == AssemblyBuilder.MANIFEST_MODULE_NAME, "Changing names for non-manifest module"); InitNames(strModuleName, null /*strFileName*/); } internal int FileToken { get { // Before save, the scope of m_tkFile is the in-memory assembly manifest // During save, the scope of m_tkFile is the on-disk assembly manifest // For transient modules m_tkFile never change. // Theoretically no one should emit anything after a dynamic assembly has // been saved. So m_tkFile shouldn't used when m_isSaved is true. // But that was never completely enforced: you can still emit everything after // the assembly has been saved (except for public types in persistent modules). return m_tkFile; } set { m_tkFile = value; } } internal String m_strModuleName; // scope name (can be different from file name) internal String m_strFileName; internal bool m_fGlobalBeenCreated; internal bool m_fHasGlobal; [NonSerialized] internal TypeBuilder m_globalTypeBuilder; [NonSerialized] internal ModuleBuilder m_module; private int m_tkFile; internal bool m_isSaved; [NonSerialized] internal ResWriterData m_embeddedRes; internal const String MULTI_BYTE_VALUE_CLASS = "$ArrayType$"; internal String m_strResourceFileName; internal byte[] m_resourceBytes; } // class ModuleBuilderData } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //////////////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////// //[....] // namespace System.Reflection.Emit { using System; using System.Diagnostics.Contracts; using System.Globalization; using System.IO; using System.Reflection; using System.Runtime.Versioning; // This is a package private class. This class hold all of the managed // data member for ModuleBuilder. Note that what ever data members added to // this class cannot be accessed from the EE. [Serializable] internal class ModuleBuilderData { [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.Machine)] [ResourceConsumption(ResourceScope.Machine)] internal ModuleBuilderData(ModuleBuilder module, String strModuleName, String strFileName, int tkFile) { m_globalTypeBuilder = new TypeBuilder(module); m_module = module; m_tkFile = tkFile; InitNames(strModuleName, strFileName); } // Initialize module and file names. [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.Machine)] [ResourceConsumption(ResourceScope.Machine)] private void InitNames(String strModuleName, String strFileName) { m_strModuleName = strModuleName; if (strFileName == null) { // fake a transient module file name m_strFileName = strModuleName; } else { String strExtension = Path.GetExtension(strFileName); if (strExtension == null || strExtension == String.Empty) { // This is required by our loader. It cannot load module file that does not have file extension. throw new ArgumentException(Environment.GetResourceString("Argument_NoModuleFileExtension", strFileName)); } m_strFileName = strFileName; } } // This is a method for changing module and file name of the manifest module (created by default for // each assembly). [System.Security.SecurityCritical] // auto-generated [ResourceExposure(ResourceScope.Machine)] [ResourceConsumption(ResourceScope.Machine)] internal virtual void ModifyModuleName(String strModuleName) { Contract.Assert(m_strModuleName == AssemblyBuilder.MANIFEST_MODULE_NAME, "Changing names for non-manifest module"); InitNames(strModuleName, null /*strFileName*/); } internal int FileToken { get { // Before save, the scope of m_tkFile is the in-memory assembly manifest // During save, the scope of m_tkFile is the on-disk assembly manifest // For transient modules m_tkFile never change. // Theoretically no one should emit anything after a dynamic assembly has // been saved. So m_tkFile shouldn't used when m_isSaved is true. // But that was never completely enforced: you can still emit everything after // the assembly has been saved (except for public types in persistent modules). return m_tkFile; } set { m_tkFile = value; } } internal String m_strModuleName; // scope name (can be different from file name) internal String m_strFileName; internal bool m_fGlobalBeenCreated; internal bool m_fHasGlobal; [NonSerialized] internal TypeBuilder m_globalTypeBuilder; [NonSerialized] internal ModuleBuilder m_module; private int m_tkFile; internal bool m_isSaved; [NonSerialized] internal ResWriterData m_embeddedRes; internal const String MULTI_BYTE_VALUE_CLASS = "$ArrayType$"; internal String m_strResourceFileName; internal byte[] m_resourceBytes; } // class ModuleBuilderData } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- TextRunCacheImp.cs
- QueryCreatedEventArgs.cs
- DefaultPropertyAttribute.cs
- ThicknessAnimationUsingKeyFrames.cs
- SafeBitVector32.cs
- ListComponentEditor.cs
- SafeHandle.cs
- SmiConnection.cs
- RC2.cs
- BaseParaClient.cs
- AutomationProperties.cs
- SimpleApplicationHost.cs
- UTF7Encoding.cs
- XmlFormatExtensionPrefixAttribute.cs
- ConfigUtil.cs
- SoapReflectionImporter.cs
- CaseStatement.cs
- XmlSchemaAny.cs
- ToolStripDropDown.cs
- RawStylusInputCustomData.cs
- Pen.cs
- ToolboxComponentsCreatedEventArgs.cs
- Popup.cs
- Constraint.cs
- UnsafeCollabNativeMethods.cs
- Vector3DCollectionConverter.cs
- HtmlTableRow.cs
- ISFClipboardData.cs
- ToolTip.cs
- DataGridDetailsPresenter.cs
- Command.cs
- OdbcRowUpdatingEvent.cs
- PrintSchema.cs
- ReadWriteObjectLock.cs
- OutputScopeManager.cs
- SqlInternalConnectionSmi.cs
- TransactionFlowBindingElement.cs
- AppDomainGrammarProxy.cs
- ValuePattern.cs
- SettingsPropertyValueCollection.cs
- DesignSurfaceEvent.cs
- OdbcConnectionOpen.cs
- GlyphingCache.cs
- TemplateField.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- NameValueCache.cs
- XmlChoiceIdentifierAttribute.cs
- XmlRawWriterWrapper.cs
- AsymmetricSignatureDeformatter.cs
- BitmapEffectDrawing.cs
- Int16KeyFrameCollection.cs
- IisTraceListener.cs
- ObjectAnimationUsingKeyFrames.cs
- LazyLoadBehavior.cs
- PrefixQName.cs
- ComplexLine.cs
- LogLogRecord.cs
- ObjectDataSourceStatusEventArgs.cs
- XmlEntityReference.cs
- RelationshipFixer.cs
- IPAddress.cs
- ClientData.cs
- XMLUtil.cs
- KeyFrames.cs
- DiscoveryService.cs
- ConfigXmlWhitespace.cs
- MenuCommand.cs
- DynamicDataResources.Designer.cs
- XmlArrayAttribute.cs
- ImpersonationContext.cs
- SystemIPv6InterfaceProperties.cs
- HtmlElement.cs
- SimpleTextLine.cs
- SelfIssuedTokenFactoryCredential.cs
- AxHost.cs
- ProfileProvider.cs
- MaskedTextBox.cs
- DbProviderFactory.cs
- ProcessModule.cs
- Application.cs
- ExtensionSimplifierMarkupObject.cs
- XmlWriterSettings.cs
- XmlWriter.cs
- DetailsViewRowCollection.cs
- MailSettingsSection.cs
- StylusButton.cs
- FunctionCommandText.cs
- PartialClassGenerationTaskInternal.cs
- SqlRemoveConstantOrderBy.cs
- BindingList.cs
- TextDecoration.cs
- WindowsClientElement.cs
- CodeBinaryOperatorExpression.cs
- TextSelectionHelper.cs
- Figure.cs
- TraceHelpers.cs
- ScrollViewerAutomationPeer.cs
- CatalogPartChrome.cs
- HScrollProperties.cs
- TextEditorTyping.cs