src/WebJobs.Script.WebHost/Security/KeyManagement/IKeyValueWriter.cs (13 lines of code) (raw):
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Microsoft.Azure.WebJobs.Script.WebHost
{
public interface IKeyValueWriter
{
Key WriteValue(Key key);
}
}