Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / AddIn / AddIn / System / Addin / MiniReflection / MetadataReader / AssemblyInfo.cs / 1305376 / AssemblyInfo.cs
using System; namespace System.AddIn.MiniReflection.MetadataReader { internal struct AssemblyInfo { private Version m_Version; private UInt32 m_Flags; private String m_SimpleName; private String m_Culture; // Never an empty string, always null for non-empty private byte[] m_PublicKey; private String m_FullName; private String m_PublicKeyToken; /* public String SimpleName { get { return m_SimpleName; } } public String Culture { get { return m_Culture; } } */ public AssemblyInfo(System.Reflection.AssemblyName AN) { m_Version = AN.Version; m_Flags = (UInt32) AN.Flags; byte[] Token; if ((m_Flags & (UInt32) System.Reflection.AssemblyNameFlags.PublicKey) == 0) Token = AN.GetPublicKeyToken(); else Token = AN.GetPublicKey(); if ((Token != null) && (Token.Length==0)) m_PublicKey = null; else m_PublicKey = Token; m_SimpleName = AN.Name; m_Culture = AN.CultureInfo.Name; if (m_Culture.Length == 0) m_Culture = null; m_FullName = null; m_PublicKeyToken = null; } internal AssemblyInfo(Version V, UInt32 Flags, byte[] PublicKeyOrToken, String Name, String Culture) { m_Version = V; m_Flags = Flags; m_PublicKey = PublicKeyOrToken; m_SimpleName = Name; m_Culture = Culture; m_FullName = null; m_PublicKeyToken = null; } public static implicit operator AssemblyInfo(System.Reflection.AssemblyName AN) { return new AssemblyInfo(AN); } public String PublicKeyToken { get { if (m_PublicKeyToken == null) { if (m_PublicKey == null) return null; byte[] Useful = new byte[8]; if ((m_Flags & (UInt32) System.Reflection.AssemblyNameFlags.PublicKey) != 0) { using (System.Security.Cryptography.SHA1 Hasher = System.Security.Cryptography.SHA1.Create()) { byte[] Hashed = Hasher.ComputeHash(m_PublicKey); for (int i = 0, j = Hashed.Length - 1; i < 8; i++, j--) Useful[i] = Hashed[j]; } } else Useful = m_PublicKey; m_PublicKeyToken = PEFileReader.BytesToHexString(Useful); } return m_PublicKeyToken; } } /* public System.Reflection.ProcessorArchitecture ProcessorArchitecture { get { // According to inc\corhdr.h the architecture is encoded in the flags, // as xxxxxxPx where P is a byte of the form 0yyy with yyy being the value // we want to return. return (System.Reflection.ProcessorArchitecture)((m_Flags & 0x70) >> 4); } } public static AssemblyInfo[] FromArray(System.Reflection.AssemblyName[] ANs) { AssemblyInfo[] Result = new AssemblyInfo[ANs.Length]; for (int i = 0; i < ANs.Length; i++) Result[i] = new AssemblyInfo(ANs[i]); return Result; } */ public Version Version { get { return m_Version; } } public override String ToString() { if (m_FullName == null) { m_FullName = m_SimpleName + ", Version=" + Version.Major + "." + Version.Minor + "." + Version.Build + "." + Version.Revision; m_FullName += ", Culture=" + ((m_Culture == null) ? "neutral" : m_Culture); String PKT = PublicKeyToken; m_FullName += ", PublicKeyToken=" + ((PKT == null) ? "null" : PKT); } return m_FullName; } /* public String FullName { // Note: always returns PublicKeyToken, never full public key get { return this.ToString(); } } */ } } // 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
- BaseCAMarshaler.cs
- ActivationArguments.cs
- RepeaterItemEventArgs.cs
- HttpRequest.cs
- PersistencePipeline.cs
- CommandBinding.cs
- ThreadSafeList.cs
- ECDiffieHellmanCng.cs
- HtmlListAdapter.cs
- ExtendedProtectionPolicyElement.cs
- _FixedSizeReader.cs
- InternalResources.cs
- HiddenFieldPageStatePersister.cs
- SqlMethodTransformer.cs
- XpsS0ValidatingLoader.cs
- FileLevelControlBuilderAttribute.cs
- TemplateControlBuildProvider.cs
- DrawingContextDrawingContextWalker.cs
- DesignerEditorPartChrome.cs
- DocumentViewerAutomationPeer.cs
- Emitter.cs
- ConfigurationConverterBase.cs
- ChannelManagerBase.cs
- XmlBinaryReader.cs
- ListViewUpdatedEventArgs.cs
- ToolbarAUtomationPeer.cs
- SimpleHandlerBuildProvider.cs
- PickBranchDesigner.xaml.cs
- AstNode.cs
- ToolBarOverflowPanel.cs
- MemoryRecordBuffer.cs
- Dynamic.cs
- SQLString.cs
- UserControl.cs
- GeneratedView.cs
- ProcessInfo.cs
- SqlMethodAttribute.cs
- ReadOnlyDictionary.cs
- StreamInfo.cs
- StreamWriter.cs
- ObjectViewEntityCollectionData.cs
- ReadOnlyMetadataCollection.cs
- NativeWrapper.cs
- SqlFunctionAttribute.cs
- PrintDialog.cs
- QilNode.cs
- ModuleBuilder.cs
- XmlFormatExtensionPointAttribute.cs
- ReadOnlyHierarchicalDataSourceView.cs
- MaskedTextProvider.cs
- SqlConnectionPoolProviderInfo.cs
- PriorityQueue.cs
- DataGridHelper.cs
- log.cs
- WebPartConnection.cs
- TabletDeviceInfo.cs
- TextBlock.cs
- XmlWrappingReader.cs
- HandleDictionary.cs
- Events.cs
- Msec.cs
- SemanticAnalyzer.cs
- LocationReference.cs
- WindowsIPAddress.cs
- GradientStopCollection.cs
- TempFiles.cs
- ListViewSelectEventArgs.cs
- XmlnsDefinitionAttribute.cs
- IntranetCredentialPolicy.cs
- MemberHolder.cs
- SspiHelper.cs
- ForceCopyBuildProvider.cs
- ConfigurationValues.cs
- HostSecurityManager.cs
- DaylightTime.cs
- XmlAttributeHolder.cs
- PageCatalogPart.cs
- HierarchicalDataTemplate.cs
- FileUtil.cs
- InterleavedZipPartStream.cs
- EdmScalarPropertyAttribute.cs
- UserControlCodeDomTreeGenerator.cs
- BinaryUtilClasses.cs
- DataControlFieldHeaderCell.cs
- IndentTextWriter.cs
- MessageContractAttribute.cs
- StringDictionaryEditor.cs
- DropShadowEffect.cs
- ProcessHostConfigUtils.cs
- HttpHeaderCollection.cs
- ScrollChangedEventArgs.cs
- GcSettings.cs
- HMACSHA512.cs
- CompilerInfo.cs
- TextRunProperties.cs
- SamlNameIdentifierClaimResource.cs
- BufferedGraphics.cs
- CompoundFileIOPermission.cs
- StyleBamlTreeBuilder.cs
- HitTestParameters.cs