8 lines
174 B
C#
8 lines
174 B
C#
|
|
using System;
|
||
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
public interface IEnvironmentContextData
|
||
|
|
{
|
||
|
|
IEnumerable<KeyValuePair<string, string>> GetRuntimeEnvironmentVariables();
|
||
|
|
}
|