You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

151 lines
7.5 KiB

  1. <!DOCTYPE html>
  2. <!--[if IE]><![endif]-->
  3. <html>
  4. <head>
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  7. <title> </title>
  8. <meta name="viewport" content="width=device-width">
  9. <meta name="title" content=" ">
  10. <meta name="generator" content="docfx 2.48.0.0">
  11. <link rel="shortcut icon" href="../favicon.ico">
  12. <link rel="stylesheet" href="../styles/docfx.vendor.css">
  13. <link rel="stylesheet" href="../styles/docfx.css">
  14. <link rel="stylesheet" href="../styles/main.css">
  15. <link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
  16. <meta property="docfx:navrel" content="../toc.html">
  17. <meta property="docfx:tocrel" content="toc.html">
  18. <meta property="docfx:rel" content="../">
  19. <meta property="docfx:newtab" content="true">
  20. </head> <body data-spy="scroll" data-target="#affix" data-offset="120">
  21. <div id="wrapper">
  22. <header>
  23. <nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
  24. <div class="container">
  25. <div class="navbar-header">
  26. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
  27. <span class="sr-only">Toggle navigation</span>
  28. <span class="icon-bar"></span>
  29. <span class="icon-bar"></span>
  30. <span class="icon-bar"></span>
  31. </button>
  32. <a class="navbar-brand" href="../index.html">
  33. <img id="logo" class="svg" src="../logo.svg" alt="">
  34. </a>
  35. </div>
  36. <div class="collapse navbar-collapse" id="navbar">
  37. <form class="navbar-form navbar-right" role="search" id="search">
  38. <div class="form-group">
  39. <input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
  40. </div>
  41. </form>
  42. </div>
  43. </div>
  44. </nav>
  45. <div class="subnav navbar navbar-default">
  46. <div class="container hide-when-search" id="breadcrumb">
  47. <ul class="breadcrumb">
  48. <li></li>
  49. </ul>
  50. </div>
  51. </div>
  52. </header>
  53. <div class="container body-content">
  54. <div id="search-results">
  55. <div class="search-list"></div>
  56. <div class="sr-items">
  57. <p><i class="glyphicon glyphicon-refresh index-loading"></i></p>
  58. </div>
  59. <ul id="pagination"></ul>
  60. </div>
  61. </div>
  62. <div role="main" class="container body-content hide-when-search">
  63. <div class="sidenav hide-when-search">
  64. <a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
  65. <div class="sidetoggle collapse" id="sidetoggle">
  66. <div id="sidetoc"></div>
  67. </div>
  68. </div>
  69. <div class="article row grid-right">
  70. <div class="col-md-10">
  71. <article class="content wrap" id="_content" data-uid="IPA.Config.Data">
  72. <h1 id="IPA_Config_Data" data-uid="IPA.Config.Data" class="text-break"></h1>
  73. <div class="markdown level0 summary"></div>
  74. <div class="markdown level0 conceptual"></div>
  75. <div class="markdown level0 remarks"></div>
  76. <h3 id="classes">Classes
  77. </h3>
  78. <h4><a class="xref" href="IPA.Config.Data.Boolean.html">Boolean</a></h4>
  79. <section><p>A <a class="xref" href="IPA.Config.Data.Boolean.html#IPA_Config_Data_Boolean_Value">Value</a> representing a boolean value.</p>
  80. </section>
  81. <h4><a class="xref" href="IPA.Config.Data.FloatingPoint.html">FloatingPoint</a></h4>
  82. <section><p>A <a class="xref" href="IPA.Config.Data.FloatingPoint.html#IPA_Config_Data_FloatingPoint_Value">Value</a> representing a floating point value. This may hold a
  83. <a class="xref" href="https://docs.microsoft.com/dotnet/api/system.decimal">Decimal</a>&apos;s worth of data.</p>
  84. </section>
  85. <h4><a class="xref" href="IPA.Config.Data.Integer.html">Integer</a></h4>
  86. <section><p>A <a class="xref" href="IPA.Config.Data.Integer.html#IPA_Config_Data_Integer_Value">Value</a> representing an integer. This may hold a <a class="xref" href="https://docs.microsoft.com/dotnet/api/system.int64">Int64</a>&apos;s
  87. worth of data.</p>
  88. </section>
  89. <h4><a class="xref" href="IPA.Config.Data.List.html">List</a></h4>
  90. <section><p>A list of <a class="xref" href="IPA.Config.Data.Value.html">Value</a>s for serialization by an <a class="xref" href="IPA.Config.IConfigProvider.html">IConfigProvider</a>.
  91. Use <a class="xref" href="IPA.Config.Data.Value.html#IPA_Config_Data_Value_List">List()</a> or <a class="xref" href="IPA.Config.Data.Value.html#IPA_Config_Data_Value_From_System_Collections_Generic_IEnumerable_IPA_Config_Data_Value__">From(IEnumerable&lt;Value&gt;)</a> to create.</p>
  92. </section>
  93. <h4><a class="xref" href="IPA.Config.Data.Map.html">Map</a></h4>
  94. <section><p>A ordered map of <a class="xref" href="https://docs.microsoft.com/dotnet/api/system.string">String</a> to <a class="xref" href="IPA.Config.Data.Value.html">Value</a> for serialization by an <a class="xref" href="IPA.Config.IConfigProvider.html">IConfigProvider</a>.
  95. Use <a class="xref" href="IPA.Config.Data.Value.html#IPA_Config_Data_Value_Map">Map()</a> or <a class="xref" href="IPA.Config.Data.Value.html#IPA_Config_Data_Value_From_System_Collections_Generic_IDictionary_System_String_IPA_Config_Data_Value__">From(IDictionary&lt;String, Value&gt;)</a> to create.</p>
  96. </section>
  97. <h4><a class="xref" href="IPA.Config.Data.Text.html">Text</a></h4>
  98. <section><p>A <a class="xref" href="IPA.Config.Data.Text.html#IPA_Config_Data_Text_Value">Value</a> representing a piece of text. The only reason this is not named
  99. String is so that it doesn&apos;t conflict with <a class="xref" href="https://docs.microsoft.com/dotnet/api/system.string">String</a>.</p>
  100. </section>
  101. <h4><a class="xref" href="IPA.Config.Data.Value.html">Value</a></h4>
  102. <section><p>A base value type for config data abstract representations, to be serialized with an
  103. <a class="xref" href="IPA.Config.IConfigProvider.html">IConfigProvider</a>. If a <a class="xref" href="IPA.Config.Data.Value.html">Value</a> is <span class="xref">null</span>, then
  104. that represents just that: a <code>null</code> in whatever serialization is being used.
  105. Also contains factory functions for all derived types.</p>
  106. </section>
  107. </article>
  108. </div>
  109. <div class="hidden-sm col-md-2" role="complementary">
  110. <div class="sideaffix">
  111. <div class="contribution">
  112. <ul class="nav">
  113. </ul>
  114. </div>
  115. <nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
  116. <!-- <p><a class="back-to-top" href="#top">Back to top</a><p> -->
  117. </nav>
  118. </div>
  119. </div>
  120. </div>
  121. </div>
  122. <footer>
  123. <div class="grad-bottom"></div>
  124. <div class="footer">
  125. <div class="container">
  126. <span class="pull-right">
  127. <a href="#top">Back to top</a>
  128. </span>
  129. <span>Generated by <strong>DocFX</strong></span>
  130. </div>
  131. </div>
  132. </footer>
  133. </div>
  134. <script type="text/javascript" src="../styles/docfx.vendor.js"></script>
  135. <script type="text/javascript" src="../styles/docfx.js"></script>
  136. <script type="text/javascript" src="../styles/main.js"></script>
  137. </body>
  138. </html>