Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / Reflection / ObfuscateAssemblyAttribute.cs / 1305376 / ObfuscateAssemblyAttribute.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //[....] // using System; using System.Reflection; namespace System.Reflection { [AttributeUsage (AttributeTargets.Assembly, AllowMultiple=false, Inherited=false)] [System.Runtime.InteropServices.ComVisible(true)] public sealed class ObfuscateAssemblyAttribute : Attribute { private bool m_assemblyIsPrivate; private bool m_strip = true; public ObfuscateAssemblyAttribute(bool assemblyIsPrivate) { m_assemblyIsPrivate = assemblyIsPrivate; } public bool AssemblyIsPrivate { get { return m_assemblyIsPrivate; } } public bool StripAfterObfuscation { get { return m_strip; } set { m_strip = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== //[....] // using System; using System.Reflection; namespace System.Reflection { [AttributeUsage (AttributeTargets.Assembly, AllowMultiple=false, Inherited=false)] [System.Runtime.InteropServices.ComVisible(true)] public sealed class ObfuscateAssemblyAttribute : Attribute { private bool m_assemblyIsPrivate; private bool m_strip = true; public ObfuscateAssemblyAttribute(bool assemblyIsPrivate) { m_assemblyIsPrivate = assemblyIsPrivate; } public bool AssemblyIsPrivate { get { return m_assemblyIsPrivate; } } public bool StripAfterObfuscation { get { return m_strip; } set { m_strip = value; } } } } // 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
- DecoderNLS.cs
- PluralizationServiceUtil.cs
- PersonalizationAdministration.cs
- SystemException.cs
- ReadOnlyDictionary.cs
- MappedMetaModel.cs
- FormsAuthenticationTicket.cs
- Win32KeyboardDevice.cs
- Constants.cs
- ContractValidationHelper.cs
- PageMediaType.cs
- ReadOnlyHierarchicalDataSourceView.cs
- XmlReturnReader.cs
- ConstraintConverter.cs
- CanonicalXml.cs
- LayoutEditorPart.cs
- FixedDocument.cs
- RegexGroup.cs
- SQLMoneyStorage.cs
- DataGridViewRowPostPaintEventArgs.cs
- MemberCollection.cs
- CodeMemberEvent.cs
- WindowsListBox.cs
- ADMembershipProvider.cs
- FacetChecker.cs
- DateTimeFormatInfoScanner.cs
- WebPartManagerInternals.cs
- FileSystemEventArgs.cs
- SqlFlattener.cs
- IdentityManager.cs
- HealthMonitoringSectionHelper.cs
- ConfigurationErrorsException.cs
- DatagramAdapter.cs
- HttpProfileBase.cs
- SqlDataSourceConfigureSortForm.cs
- IndentedTextWriter.cs
- MemoryPressure.cs
- CacheMode.cs
- TextBoxAutomationPeer.cs
- oledbconnectionstring.cs
- XsltContext.cs
- XmlQueryContext.cs
- PersonalizableTypeEntry.cs
- CheckedPointers.cs
- Package.cs
- TargetParameterCountException.cs
- XmlConverter.cs
- ToolStripMenuItemCodeDomSerializer.cs
- CategoryGridEntry.cs
- ViewStateModeByIdAttribute.cs
- HttpDebugHandler.cs
- Hash.cs
- ReachDocumentSequenceSerializer.cs
- CodeRemoveEventStatement.cs
- CommandField.cs
- ReadOnlyDataSource.cs
- TextViewSelectionProcessor.cs
- DrawingDrawingContext.cs
- AnonymousIdentificationSection.cs
- StickyNoteAnnotations.cs
- QilList.cs
- XmlParserContext.cs
- SafeRegistryHandle.cs
- sortedlist.cs
- ProxyFragment.cs
- ProgressBarAutomationPeer.cs
- BaseResourcesBuildProvider.cs
- UICuesEvent.cs
- TextServicesCompartment.cs
- ProvideValueServiceProvider.cs
- ClaimTypes.cs
- SerializerProvider.cs
- util.cs
- UnSafeCharBuffer.cs
- HttpPostedFile.cs
- PageScaling.cs
- EditorAttribute.cs
- CroppedBitmap.cs
- DocumentSignatureManager.cs
- WebSysDefaultValueAttribute.cs
- ObjectTag.cs
- SettingsSection.cs
- ADConnectionHelper.cs
- OpenFileDialog.cs
- ComponentCollection.cs
- XmlAnyElementAttributes.cs
- PartitionerQueryOperator.cs
- HostExecutionContextManager.cs
- ProfileParameter.cs
- TabPageDesigner.cs
- SpecialFolderEnumConverter.cs
- Renderer.cs
- SynchronizedDisposablePool.cs
- ConnectionPointCookie.cs
- SafeTimerHandle.cs
- BrowserPolicyValidator.cs
- TitleStyle.cs
- IdnElement.cs
- OleDbWrapper.cs
- XmlImplementation.cs