File: System\Resources\IResourceWriter.cs | Web Access |
Project: src\src\libraries\System.Resources.Writer\src\System.Resources.Writer.csproj (System.Resources.Writer) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Resources { public interface IResourceWriter : IDisposable { void AddResource(string name, string? value); void AddResource(string name, object? value); void AddResource(string name, byte[]? value); void Close(); void Generate(); } } |