Show / Hide Table of Contents

Class ConfigFile.ConfigAccumulator

ConfigAccumulator stores information from ConfigFile into Dictionary that can be used to retrieve config information.

Inheritance
object
ConfigFile.ConfigAccumulator
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.Common
Assembly: OCI.DotNetSDK.Common.dll
Syntax
public class ConfigFile.ConfigAccumulator

Fields

configurationByProfile

A Dictionary that stores all information in config file.

Declaration
public Dictionary<string, Dictionary<string, string>> configurationByProfile
Field Value
Type Description
Dictionary<string, Dictionary<string, string>>

foundDefaultProfile

If the config file contains a default profile.

Declaration
public bool foundDefaultProfile
Field Value
Type Description
bool

Methods

Accept(string)

Parses a string in a config file.

Declaration
public void Accept(string line)
Parameters
Type Name Description
string line
In this article
Back to top