9 references to Data
System.Windows.Forms.Design (9)
System\ComponentModel\Design\Serialization\CodeDomComponentSerializationService.CodeDomSerializationStore.cs (2)
167new BinaryFormatter().Serialize(_resourceStream, _resources.Data); 333info.AddValue(ResourcesKey, _resources?.Data);
System\ComponentModel\Design\Serialization\CodeDomComponentSerializationService.CodeDomSerializationStore.LocalResourceManager.cs (7)
28public void AddResource(string name, object? value) { Data[name] = value; } 29public void AddResource(string name, string? value) { Data[name] = value; } 30public void AddResource(string name, byte[]? value) { Data[name] = value; } 32public void Dispose() { Data.Clear(); } 36public override object? GetObject(string name) { return Data[name]; } 37public override string? GetString(string name) { return Data[name] as string; } 38public IDictionaryEnumerator GetEnumerator() { return Data.GetEnumerator(); }