mscorlib(4.0.0.0) API with additions
IResourceWriter.cs
2 
3 namespace System.Resources
4 {
6  [ComVisible(true)]
7  public interface IResourceWriter : IDisposable
8  {
13  void AddResource(string name, string value);
14 
19  void AddResource(string name, object value);
20 
25  void AddResource(string name, byte[] value);
26 
28  void Close();
29 
31  void Generate();
32  }
33 }
Provides the base functionality for writing resources to an output file or stream.
void Generate()
Writes all the resources added by the M:System.Resources.IResourceWriter.AddResource(System....
Provides a mechanism for releasing unmanaged resources.To browse the .NET Framework source code for t...
Definition: IDisposable.cs:8
Definition: __Canon.cs:3
void AddResource(string name, string value)
Adds a named resource of type T:System.String to the list of resources to be written.
void Close()
Closes the underlying resource file or stream, ensuring all the data has been written to the file.