Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

ResourceWriter.Close Method

Definition

Namespace:
System.Resources
Assemblies:
netstandard.dll, System.Resources.Writer.dll
Assembly:
System.Resources.Writer.dll
Assembly:
mscorlib.dll
Assembly:
netstandard.dll
Source:
ResourceWriter.cs
Source:
ResourceWriter.cs
Source:
ResourceWriter.cs
Source:
ResourceWriter.cs
Source:
ResourceWriter.cs

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Saves the resources to the output stream and then closes it.

public:
 virtual void Close();
public void Close();
abstract member Close : unit -> unit
override this.Close : unit -> unit
Public Sub Close ()

Implements

Exceptions

An I/O error has occurred.

An error has occurred during serialization of the object.

Examples

The following example uses the Close method to write all resource objects in a ResourceWriter class to the output stream. The code then shuts down the writer.

using System;
using System.Resources;
using System.IO;

public class WriteResources 
{
 public static void Main(string[] args) 
 { 
 // Create a file stream to encapsulate items.resources.
 FileStream fs = new FileStream("items.resources", 
 FileMode.OpenOrCreate,FileAccess.Write);

 // Open a resource writer to write from the stream.
 IResourceWriter writer = new ResourceWriter(fs);
 
 // Add resources to the resource writer.
 writer.AddResource("String 1", "First String");
 writer.AddResource("String 2", "Second String");
 writer.AddResource("String 3", "Third String");

 // Write the resources to the stream, and close it.
 writer.Close();
 }
}
Imports System.Resources
Imports System.IO

Public Class WriteResources
 
 Public Shared Sub Main(args() As String)
 ' Create a file stream to encapsulate items.resources.
 Dim fs As New FileStream("items.resources", _
 FileMode.OpenOrCreate, FileAccess.Write)
 
 ' Open a resource writer to write from the stream.
 Dim writer = New ResourceWriter(fs)
 
 ' Add resources to the resource writer.
 writer.AddResource("String 1", "First String")
 writer.AddResource("String 2", "Second String")
 writer.AddResource("String 3", "Third String")
 
 ' Write the resources to the stream, and close it.
 writer.Close()
 End Sub

End Class

Remarks

Generate is called implicitly by Close, if required.

Applies to


Feedback

Was this page helpful?