using System; using System.Runtime.InteropServices; namespace System.Resources { /// Instructs the to ask for a particular version of a satellite assembly to simplify updates of the main assembly of an application. // Token: 0x02000281 RID: 641 [AttributeUsage(AttributeTargets.Assembly)] [ComVisible(true)] public sealed class SatelliteContractVersionAttribute : Attribute { /// Initializes a new instance of the class. /// A with the version of the satellite assemblies to load. /// The parameter is null. // Token: 0x0600209C RID: 8348 RVA: 0x000779FC File Offset: 0x00075BFC public SatelliteContractVersionAttribute(string version) { this.ver = new Version(version); } /// Gets the version of the satellite assemblies with the required resources. /// A containing the version of the satellite assemblies with the required resources. // Token: 0x17000612 RID: 1554 // (get) Token: 0x0600209D RID: 8349 RVA: 0x00077A10 File Offset: 0x00075C10 public string Version { get { return this.ver.ToString(); } } // Token: 0x04000B87 RID: 2951 private Version ver; } }