Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- StorageFunctionMapping.cs
- SqlDataSourceStatusEventArgs.cs
- Selection.cs
- ConfigurationPropertyCollection.cs
- SettingsSection.cs
- ActiveXHelper.cs
- ValidatedControlConverter.cs
- Storyboard.cs
- BridgeDataReader.cs
- OdbcEnvironmentHandle.cs
- ControlIdConverter.cs
- RelationshipConverter.cs
- OrderedParallelQuery.cs
- ItemList.cs
- WorkflowApplicationIdleEventArgs.cs
- RbTree.cs
- SqlDataSourceQueryEditor.cs
- SmtpSpecifiedPickupDirectoryElement.cs
- DataGridViewSortCompareEventArgs.cs
- RequestTimeoutManager.cs
- _DigestClient.cs
- InternalTypeHelper.cs
- DescendantBaseQuery.cs
- Stream.cs
- X509RawDataKeyIdentifierClause.cs
- UnsafeNativeMethods.cs
- SystemIPInterfaceStatistics.cs
- Internal.cs
- UnsafeNativeMethods.cs
- DetailsViewCommandEventArgs.cs
- AutomationEvent.cs
- SqlDependencyListener.cs
- RegisteredDisposeScript.cs
- SystemTcpStatistics.cs
- TextElementEnumerator.cs
- NonceToken.cs
- AssociationTypeEmitter.cs
- IntegrationExceptionEventArgs.cs
- COAUTHINFO.cs
- CryptoApi.cs
- ComponentCodeDomSerializer.cs
- NavigationWindowAutomationPeer.cs
- SmtpNetworkElement.cs
- TextProviderWrapper.cs
- TransportContext.cs
- FixUpCollection.cs
- OracleInfoMessageEventArgs.cs
- RectangleF.cs
- TargetPerspective.cs
- remotingproxy.cs
- RelationshipFixer.cs
- DesignerFrame.cs
- BrowserCapabilitiesCodeGenerator.cs
- RunInstallerAttribute.cs
- CheckedPointers.cs
- SqlCacheDependencySection.cs
- TransportSecurityProtocol.cs
- PerformanceCounters.cs
- CompiledIdentityConstraint.cs
- DesignTimeDataBinding.cs
- ReferenceConverter.cs
- MediaEntryAttribute.cs
- SQLChars.cs
- CompositionAdorner.cs
- MediaContextNotificationWindow.cs
- TemplatePropertyEntry.cs
- ComponentResourceManager.cs
- InputGestureCollection.cs
- smtpconnection.cs
- XmlBindingWorker.cs
- SystemFonts.cs
- BatchStream.cs
- _TLSstream.cs
- BigInt.cs
- FlowDocumentView.cs
- ObjectDisposedException.cs
- SkewTransform.cs
- StylusOverProperty.cs
- TimeoutTimer.cs
- TreeNodeBindingCollection.cs
- OracleParameterBinding.cs
- XmlAttributeProperties.cs
- AssemblyLoader.cs
- ObjectHandle.cs
- SystemWebCachingSectionGroup.cs
- ListView.cs
- ResourceCategoryAttribute.cs
- WinCategoryAttribute.cs
- DataPager.cs
- TypeLoadException.cs
- WebDescriptionAttribute.cs
- FrameworkRichTextComposition.cs
- SQLMoneyStorage.cs
- ImportContext.cs
- DataGridViewTextBoxEditingControl.cs
- AuthenticationServiceManager.cs
- OleDbRowUpdatingEvent.cs
- CssClassPropertyAttribute.cs
- GroupedContextMenuStrip.cs
- FixedFindEngine.cs