This commit is contained in:
Tomas Husak 2021-07-15 17:54:55 +02:00
Родитель 41bd60dd8b
Коммит 62920c39b2
537 изменённых файлов: 83 добавлений и 6453 удалений

Просмотреть файл

@ -1,4 +1,80 @@
<h1 align="center">
Client-side execution of PHP applications compiled to .NET
<h1>
Blazor plus Peachpie
</h1>
In progress
**PHP as a client side language**
> The library and SDK aren't presented on nuget.org yet. But if you want to already try it, just compile the **Peachpie.Blazor.Sdk** and **Peachpie.Blazor** and add the nuget paths to NuGet.Config file.
## What is it ?
This repository contains **Peachpie.Blazor** library and **Peachpie.Blazor.Sdk** to enable making websites with PHP together with Blazor on a client side. With these components, you can write just PHP script, which are transparently navigated and managed.
You can see usage demonstration bellow.
![Demo](.\docs\images\video1.gif)
## Why it is useful ?
There are potential scenarios of usage:
- You want to move a PHP website to a client side for saving server resources.
- You have a Blazor website and want to write a part of the website in the PHP language.
- You want to use PHP libraries on a client side.
- PHP and Blazor team can work together to make awesome website using .NET and PHP.
## How to get started ?
You can start right now.
Steps:
1. Install .NET 5.0 SDK
2. Install **Peachpie.Blazor.Templates** by ```dotnet new -i "Peachpie.Blazor.Templates::*"```
3. Choose a template depending on your intention:
- **Peachpie Blazor Web** - A simple PHP website running in browser
- **Peachpie Blazor Hybrid** - A simple Blazor website combining PHP and Razor Pages
4. Create the project by ```dotnet new project-name```
5. Add Razor pages to **BlazorApp.Client** or PHP scripts to **PHPScripts** (Optional)
6. Launch the **Blazor.Server** by navigating to its folder and run ```dotnet run```
7. Access https://localhost:5001
<img src=".\docs\images\Structure.png" alt="Solution structure" style="zoom: 67%;" />
## Features
- Transparent navigation of PHP scripts by URL
- Transparent rendering of HTML pages generated from PHP
- Full support of $\_GET, $\_POST, and $\_FILES
- Simulation of a server on a client side
- Forms are handled by PHP on a client side
- Possibility of persistent PHP context to save client session on a client side
- Inserting PHP scripts to Razor pages
- PHP, C#, JavaScript interoperability
## Future plans
There is a rough overview of the possible plans for the future:
- Make rendering with the **PhpScriptProvider** enough efficient in order to remove **PhpComponent** and make the usage even more transparent.
- Figure out the support for databases.
- Move WordPress to a client side.
## Documentation
Detailed information about the solution, the library, and the functionality can be found in *docs* folders. Advanced features of the integration are shown there. There can be some missing information about any part of the whole project. If you can ask about something, feel free to contact me and I will add these information to the folder for future interested people.
## Release
This is a first version of the integration. The API and functionality might still change to improve the advantages. The sources compilation should work, feel free to contact me (husaktomas98@google.com) to get more information about this project.

Просмотреть файл

Просмотреть файл

@ -37,15 +37,13 @@ The library contains Blazor components and helper classes enabling navigation an
**Step 5** - Add references to the library in ```BlazorApp.Client```, ```BlazorApp.Server``` and Peachpie projects.
**Step 6** - Add ```<script src="_content/Peachpie.Blazor/php.js"></script>``` to head of index.html located in ```BlazorApp.Client\wwwroot.```
**Step 6** - Add assemblies containing PHP script to ```WebAssemblyHostBuilder``` (located in ```BlazorApp.Client\Pragram.cs```) using the ```AddPhp``` extension method.
**Step 7** - Add assemblies containing PHP script to ```WebAssemblyHostBuilder``` (located in ```BlazorApp.Client\Pragram.cs```) using the ```AddPhp``` extension method.
**Step 7** - Modify projects (optional).
**Step 8** - Modify projects (optional).
**Step 8** - Launch the server by ```dotnet run``` in ```BlazorApp\Server\``` folder.
**Step 9** - Launch the server by ```dotnet run``` in ```BlazorApp\Server\``` folder.
**Step 10** - Access https://localhost:5001 .
**Step 9** - Access https://localhost:5001 .
## API

Просмотреть файл

@ -1,233 +0,0 @@
<%@ Page Language="C#" EnableViewState="False" %>
<script runat="server">
//===============================================================================================================
// System : Sandcastle Help File Builder
// File : SearchHelp.aspx
// Author : Eric Woodruff (Eric@EWoodruff.us)
// Updated : 05/15/2014
// Note : Copyright 2007-2015, Eric Woodruff, All rights reserved
// Compiler: Microsoft C#
//
// This file contains the code used to search for keywords within the help topics using the full-text index
// files created by the help file builder.
//
// This code is published under the Microsoft Public License (Ms-PL). A copy of the license should be
// distributed with the code. It can also be found at the project website: https://GitHub.com/EWSoftware/SHFB. This
// notice, the author's name, and all copyright notices must remain intact in all applications, documentation,
// and source files.
//
// Date Who Comments
// ==============================================================================================================
// 06/24/2007 EFW Created the code
// 02/17/2012 EFW Switched to JSON serialization to support websites that use something other than ASP.NET
// such as PHP.
// 05/15/2014 EFW Updated for use with the lightweight website presentation styles
//===============================================================================================================
/// <summary>
/// This class is used to track the results and their rankings
/// </summary>
private class Ranking
{
public string Filename, PageTitle;
public int Rank;
public Ranking(string file, string title, int rank)
{
Filename = file;
PageTitle = title;
Rank = rank;
}
}
/// <summary>
/// Render the search results
/// </summary>
/// <param name="writer">The writer to which the results are written</param>
protected override void Render(HtmlTextWriter writer)
{
JavaScriptSerializer jss = new JavaScriptSerializer();
string searchText, ftiFile;
char letter;
bool sortByTitle = false;
jss.MaxJsonLength = Int32.MaxValue;
// The keywords for which to search should be passed in the query string
searchText = this.Request.QueryString["Keywords"];
if(String.IsNullOrEmpty(searchText))
{
writer.Write("<strong>Nothing found</strong>");
return;
}
// An optional SortByTitle option can also be specified
if(this.Request.QueryString["SortByTitle"] != null)
sortByTitle = Convert.ToBoolean(this.Request.QueryString["SortByTitle"]);
List<string> keywords = this.ParseKeywords(searchText);
List<char> letters = new List<char>();
List<string> fileList;
Dictionary<string, List<long>> ftiWords, wordDictionary = new Dictionary<string,List<long>>();
// Load the file index
using(StreamReader sr = new StreamReader(Server.MapPath("fti/FTI_Files.json")))
{
fileList = jss.Deserialize<List<string>>(sr.ReadToEnd());
}
// Load the required word index files
foreach(string word in keywords)
{
letter = word[0];
if(!letters.Contains(letter))
{
letters.Add(letter);
ftiFile = Server.MapPath(String.Format(CultureInfo.InvariantCulture, "fti/FTI_{0}.json", (int)letter));
if(File.Exists(ftiFile))
{
using(StreamReader sr = new StreamReader(ftiFile))
{
ftiWords = jss.Deserialize<Dictionary<string, List<long>>>(sr.ReadToEnd());
}
foreach(string ftiWord in ftiWords.Keys)
wordDictionary.Add(ftiWord, ftiWords[ftiWord]);
}
}
}
// Perform the search and return the results as a block of HTML
writer.Write(this.Search(keywords, fileList, wordDictionary, sortByTitle));
}
/// <summary>
/// Split the search text up into keywords
/// </summary>
/// <param name="keywords">The keywords to parse</param>
/// <returns>A list containing the words for which to search</returns>
private List<string> ParseKeywords(string keywords)
{
List<string> keywordList = new List<string>();
string checkWord;
string[] words = Regex.Split(keywords, @"\W+");
foreach(string word in words)
{
checkWord = word.ToLower(CultureInfo.InvariantCulture);
if(checkWord.Length > 2 && !Char.IsDigit(checkWord[0]) && !keywordList.Contains(checkWord))
keywordList.Add(checkWord);
}
return keywordList;
}
/// <summary>
/// Search for the specified keywords and return the results as a block of HTML
/// </summary>
/// <param name="keywords">The keywords for which to search</param>
/// <param name="fileInfo">The file list</param>
/// <param name="wordDictionary">The dictionary used to find the words</param>
/// <param name="sortByTitle">True to sort by title, false to sort by ranking</param>
/// <returns>A block of HTML representing the search results</returns>
private string Search(List<string> keywords, List<string> fileInfo,
Dictionary<string, List<long>> wordDictionary, bool sortByTitle)
{
StringBuilder sb = new StringBuilder(10240);
Dictionary<string, List<long>> matches = new Dictionary<string, List<long>>();
List<long> occurrences;
List<int> matchingFileIndices = new List<int>(), occurrenceIndices = new List<int>();
List<Ranking> rankings = new List<Ranking>();
string filename, title;
string[] fileIndex;
bool isFirst = true;
int idx, wordCount, matchCount;
foreach(string word in keywords)
{
if(!wordDictionary.TryGetValue(word, out occurrences))
return "<strong>Nothing found</strong>";
matches.Add(word, occurrences);
occurrenceIndices.Clear();
// Get a list of the file indices for this match
foreach(long entry in occurrences)
occurrenceIndices.Add((int)(entry >> 16));
if(isFirst)
{
isFirst = false;
matchingFileIndices.AddRange(occurrenceIndices);
}
else
{
// After the first match, remove files that do not appear for
// all found keywords.
for(idx = 0; idx < matchingFileIndices.Count; idx++)
if(!occurrenceIndices.Contains(matchingFileIndices[idx]))
{
matchingFileIndices.RemoveAt(idx);
idx--;
}
}
}
if(matchingFileIndices.Count == 0)
return "<strong>Nothing found</strong>";
// Rank the files based on the number of times the words occurs
foreach(int index in matchingFileIndices)
{
// Split out the title, filename, and word count
fileIndex = fileInfo[index].Split('\x0');
title = fileIndex[0];
filename = fileIndex[1];
wordCount = Convert.ToInt32(fileIndex[2]);
matchCount = 0;
foreach(string word in keywords)
{
occurrences = matches[word];
foreach(long entry in occurrences)
if((int)(entry >> 16) == index)
matchCount += (int)(entry & 0xFFFF);
}
rankings.Add(new Ranking(filename, title, matchCount * 1000 / wordCount));
if(rankings.Count > 99)
break;
}
// Sort by rank in descending order or by page title in ascending order
rankings.Sort(delegate (Ranking x, Ranking y)
{
if(!sortByTitle)
return y.Rank - x.Rank;
return x.PageTitle.CompareTo(y.PageTitle);
});
// Format the file list and return the results
sb.Append("<ol>");
foreach(Ranking r in rankings)
sb.AppendFormat("<li><a href=\"{0}\" target=\"_blank\">{1}</a></li>", r.Filename, r.PageTitle);
sb.Append("</ol>");
if(rankings.Count < matchingFileIndices.Count)
sb.AppendFormat("<p>Omitted {0} more results</p>", matchingFileIndices.Count - rankings.Count);
return sb.ToString();
}
</script>

Просмотреть файл

@ -1,173 +0,0 @@
<?
// Contributed to the Sandcastle Help File Builder project by Thomas Levesque
class Ranking
{
public $filename;
public $pageTitle;
public $rank;
function __construct($file, $title, $rank)
{
$this->filename = $file;
$this->pageTitle = $title;
$this->rank = $rank;
}
}
/// <summary>
/// Split the search text up into keywords
/// </summary>
/// <param name="keywords">The keywords to parse</param>
/// <returns>A list containing the words for which to search</returns>
function ParseKeywords($keywords)
{
$keywordList = array();
$words = preg_split("/[^\w]+/", $keywords);
foreach($words as $word)
{
$checkWord = strtolower($word);
$first = substr($checkWord, 0, 1);
if(strlen($checkWord) > 2 && !ctype_digit($first) && !in_array($checkWord, $keywordList))
{
array_push($keywordList, $checkWord);
}
}
return $keywordList;
}
/// <summary>
/// Search for the specified keywords and return the results as a block of
/// HTML.
/// </summary>
/// <param name="keywords">The keywords for which to search</param>
/// <param name="fileInfo">The file list</param>
/// <param name="wordDictionary">The dictionary used to find the words</param>
/// <param name="sortByTitle">True to sort by title, false to sort by
/// ranking</param>
/// <returns>A block of HTML representing the search results.</returns>
function Search($keywords, $fileInfo, $wordDictionary, $sortByTitle)
{
$sb = "<ol>";
$matches = array();
$matchingFileIndices = array();
$rankings = array();
$isFirst = true;
foreach($keywords as $word)
{
if (!array_key_exists($word, $wordDictionary))
{
return "<strong>Nothing found</strong>";
}
$occurrences = $wordDictionary[$word];
$matches[$word] = $occurrences;
$occurrenceIndices = array();
// Get a list of the file indices for this match
foreach($occurrences as $entry)
array_push($occurrenceIndices, ($entry >> 16));
if($isFirst)
{
$isFirst = false;
foreach($occurrenceIndices as $i)
{
array_push($matchingFileIndices, $i);
}
}
else
{
// After the first match, remove files that do not appear for
// all found keywords.
for($idx = 0; $idx < count($matchingFileIndices); $idx++)
{
if (!in_array($matchingFileIndices[$idx], $occurrenceIndices))
{
array_splice($matchingFileIndices, $idx, 1);
$idx--;
}
}
}
}
if(count($matchingFileIndices) == 0)
{
return "<strong>Nothing found</strong>";
}
// Rank the files based on the number of times the words occurs
foreach($matchingFileIndices as $index)
{
// Split out the title, filename, and word count
$fileIndex = explode("\x00", $fileInfo[$index]);
$title = $fileIndex[0];
$filename = $fileIndex[1];
$wordCount = intval($fileIndex[2]);
$matchCount = 0;
foreach($keywords as $words)
{
$occurrences = $matches[$word];
foreach($occurrences as $entry)
{
if(($entry >> 16) == $index)
$matchCount += $entry & 0xFFFF;
}
}
$r = new Ranking($filename, $title, $matchCount * 1000 / $wordCount);
array_push($rankings, $r);
if(count($rankings) > 99)
break;
}
// Sort by rank in descending order or by page title in ascending order
if($sortByTitle)
{
usort($rankings, "cmprankbytitle");
}
else
{
usort($rankings, "cmprank");
}
// Format the file list and return the results
foreach($rankings as $r)
{
$f = $r->filename;
$t = $r->pageTitle;
$sb .= "<li><a href=\"$f\" target=\"_blank\">$t</a></li>";
}
$sb .= "</ol";
if(count($rankings) < count($matchingFileIndices))
{
$c = count(matchingFileIndices) - count(rankings);
$sb .= "<p>Omitted $c more results</p>";
}
return $sb;
}
function cmprank($x, $y)
{
return $y->rank - $x->rank;
}
function cmprankbytitle($x, $y)
{
return strcmp($x->pageTitle, $y->pageTitle);
}
?>

Просмотреть файл

@ -1,58 +0,0 @@
<?
// Contributed to the Sandcastle Help File Builder project by Thomas Levesque
include("SearchHelp.inc.php");
$sortByTitle = false;
// The keywords for which to search should be passed in the query string
$searchText = $_GET["Keywords"];
if(empty($searchText))
{
?>
<strong>Nothing found</strong>
<?
return;
}
// An optional SortByTitle option can also be specified
if($_GET["SortByTitle"] == "true")
$sortByTitle = true;
$keywords = ParseKeywords($searchText);
$letters = array();
$wordDictionary = array();
// Load the file index
$json = file_get_contents("fti/FTI_Files.json");
$fileList = json_decode($json);
// Load the required word index files
foreach($keywords as $word)
{
$letter = substr($word, 0, 1);
if(!in_array($letter, $letters))
{
array_push($letters, $letter);
$ascii = ord($letter);
$ftiFile = "fti/FTI_$ascii.json";
if(file_exists($ftiFile))
{
$json = file_get_contents($ftiFile);
$ftiWords = json_decode($json, true);
foreach($ftiWords as $ftiWord => $val)
{
$wordDictionary[$ftiWord] = $val;
}
}
}
}
// Perform the search and return the results as a block of HTML
$results = Search($keywords, $fileList, $wordDictionary, $sortByTitle);
echo $results;
?>

Просмотреть файл

@ -1,34 +0,0 @@
<?xml version="1.0"?>
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<system.web>
<customErrors mode="On" defaultRedirect="~/html/GeneralError.htm">
<error statusCode="404" redirect="~/html/PageNotFound.htm" />
</customErrors>
<compilation debug="false">
<assemblies>
<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</assemblies>
</compilation>
<pages>
<namespaces>
<add namespace="System"/>
<add namespace="System.Collections.Generic"/>
<add namespace="System.Globalization"/>
<add namespace="System.IO"/>
<add namespace="System.Text"/>
<add namespace="System.Text.RegularExpressions"/>
<add namespace="System.Web"/>
<add namespace="System.Web.Script.Serialization"/>
<add namespace="System.Web.UI"/>
<add namespace="System.Xml"/>
<add namespace="System.Xml.Serialization" />
<add namespace="System.Xml.XPath"/>
</namespaces>
</pages>
</system.web>
<appSettings>
<!-- Increase this value if you get an "Operation is not valid due to the current state of the object" error
when using the search page. -->
<add key="aspnet:MaxJsonDeserializerMembers" value="100000" />
</appSettings>
</configuration>

Просмотреть файл

@ -1,738 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<HelpKI>
<HelpKINode Title="add method" Url="html/124dd83c-3168-2488-00c7-a9dcc82a1706.htm" />
<HelpKINode Title="AddAttribute method" Url="html/f63abcf3-f98d-dc1e-55b5-8e60ee870e00.htm" />
<HelpKINode Title="AddContent method" Url="html/5187cebe-5a4a-e21d-1819-6a3b570c8337.htm" />
<HelpKINode Title="addEvent method" Url="html/0660deb6-8e53-1a13-c146-6a62dedb3dc1.htm" />
<HelpKINode Title="AddEventCallback method" Url="html/593d182d-92af-2e4c-6165-80daad8cda48.htm" />
<HelpKINode Title="AddEventChangeCallback method" Url="html/856d23c0-c491-0ba8-8c41-801b4e52a3eb.htm" />
<HelpKINode Title="AddEventClipboardCallback method" Url="html/c73cd587-bb80-baff-f282-d79c702f9f73.htm" />
<HelpKINode Title="AddEventDragCallback method" Url="html/46b890bb-56c4-d7b7-8dea-cdd956f4d81f.htm" />
<HelpKINode Title="addEventElapsed method" Url="html/c0f04228-0e4c-19fb-17bd-34b4aab80dfe.htm" />
<HelpKINode Title="AddEventErrorCallback method" Url="html/7ac5c8ed-2964-b852-c010-fb46bd2bcafb.htm" />
<HelpKINode Title="AddEventEventCallback method" Url="html/e577a7f4-de3c-582a-bf8c-067034a16291.htm" />
<HelpKINode Title="AddEventFocusCallback method" Url="html/ecd7396c-f40b-6a81-02b1-c48f7859e197.htm" />
<HelpKINode Title="AddEventKeyboardCallback method" Url="html/4dbc0f6c-6aa5-de5f-11e6-b7d2b355acfd.htm" />
<HelpKINode Title="AddEventListener(Of TEventArgs) method" Url="html/9c9acce0-4086-2b2f-e4b3-96aff96dfe43.htm" />
<HelpKINode Title="AddEventListener&lt;TEventArgs&gt; method" Url="html/9c9acce0-4086-2b2f-e4b3-96aff96dfe43.htm" />
<HelpKINode Title="AddEventMouseCallback method" Url="html/68908e1d-8698-9392-b879-1ec015a3ee2e.htm" />
<HelpKINode Title="AddEventPointerCallback method" Url="html/49e50ac2-f7cd-14d4-32d8-327089224641.htm" />
<HelpKINode Title="AddEventProgressCallback method" Url="html/4e036f58-50c8-0c0e-36e4-8f14396d16d7.htm" />
<HelpKINode Title="AddEventTouchCallback method" Url="html/589aec2e-96f8-78a7-3fca-d79193677e8b.htm" />
<HelpKINode Title="AddEventWheelCallback method" Url="html/96bc2529-3d75-e468-2c58-37b6fcb9af36.htm" />
<HelpKINode Title="AddMarkupContent method" Url="html/35c57e99-85d7-b929-8a12-f465c8249d1d.htm" />
<HelpKINode Title="AddPhp method" Url="html/22bcbb7c-89fc-2926-d156-adcc02ffe172.htm" />
<HelpKINode Title="AddSimpleEventListener method" Url="html/24b0b196-3fcd-39e8-da78-abcd5ed0296c.htm" />
<HelpKINode Title="Attach method" Url="html/08d46867-5e5a-a1d0-6133-cd1b1a412ba3.htm" />
<HelpKINode Title="AttributeCollection class">
<HelpKINode Title="AttributeCollection Class" Url="html/7a06a6b6-3152-2bc7-ee97-fa6c3e08dde9.htm" />
<HelpKINode Title="constructor" Url="html/6bbc3805-485a-657e-acad-dc407e9987e7.htm" />
<HelpKINode Title="fields" Url="html/e5c8e03d-ba24-1925-bc27-8ae5e0fab246.htm" />
<HelpKINode Title="methods" Url="html/0f5f12af-b64c-2989-edf9-61850f480d2c.htm" />
</HelpKINode>
<HelpKINode Title="AttributeCollection.addEvent method" Url="html/0660deb6-8e53-1a13-c146-6a62dedb3dc1.htm" />
<HelpKINode Title="AttributeCollection.AttributeCollection constructor" Url="html/6bbc3805-485a-657e-acad-dc407e9987e7.htm" />
<HelpKINode Title="AttributeCollection.attributes field" Url="html/6964c99d-af93-fff0-05c9-bc2873712433.htm" />
<HelpKINode Title="AttributeCollection.classes field" Url="html/36890f6b-528d-0dae-4575-777ffb9fa371.htm" />
<HelpKINode Title="AttributeCollection.events field" Url="html/d31a151d-4c97-b8c5-9148-6aa8ec8883e9.htm" />
<HelpKINode Title="AttributeCollection.offsetExists method" Url="html/29c4f1d6-7242-84ba-5ef3-f6b88d65b818.htm" />
<HelpKINode Title="AttributeCollection.offsetGet method" Url="html/ebf23910-6fcc-3ae4-453c-e7473885cd72.htm" />
<HelpKINode Title="AttributeCollection.offsetSet method" Url="html/052636ce-42df-ae89-1801-9bd237a5ced0.htm" />
<HelpKINode Title="AttributeCollection.offsetUnset method" Url="html/7a050771-2bee-1149-3313-440f826f96a1.htm" />
<HelpKINode Title="AttributeCollection.removeEvent method" Url="html/80c5fa70-c6f4-eab4-e593-cb6cb5e02b01.htm" />
<HelpKINode Title="AttributeCollection.styles field" Url="html/50fef3d0-7d02-7c65-c470-758f65ef622d.htm" />
<HelpKINode Title="AttributeCollection.ToString method" Url="html/779e74f4-3f8f-9e29-7353-930fc4e268bd.htm" />
<HelpKINode Title="AttributeCollection.writeWithTreeBuilder method" Url="html/a1573d75-da6f-9035-a37d-24ba5aede43a.htm" />
<HelpKINode Title="attributes field">
<HelpKINode Title="AttributeCollection.attributes Field" Url="html/6964c99d-af93-fff0-05c9-bc2873712433.htm" />
<HelpKINode Title="Tag.attributes Field" Url="html/38264408-0359-676e-4af7-17dcc8741c42.htm" />
</HelpKINode>
<HelpKINode Title="AutoReset method" Url="html/d9703d10-dd5c-dcab-41a5-4234fccbe53b.htm" />
<HelpKINode Title="BlazorContext class">
<HelpKINode Title="BlazorContext Class" Url="html/2ef0b2e2-f49f-3564-28c3-f1d42929ff45.htm" />
<HelpKINode Title="constructor" Url="html/d2dfd58c-db4d-72d3-baac-6a7c5be8158d.htm" />
<HelpKINode Title="fields" Url="html/33ed7ace-caa8-1c94-8214-5c3daa07f6a5.htm" />
<HelpKINode Title="methods" Url="html/d4622821-c8c1-c91b-ad2e-41a3fcf8d814.htm" />
</HelpKINode>
<HelpKINode Title="BlazorContext.BlazorContext constructor" Url="html/d2dfd58c-db4d-72d3-baac-6a7c5be8158d.htm" />
<HelpKINode Title="BlazorContext.CallJs(Of TResult) method" Url="html/7ceacaee-4141-0fde-e9bd-3da938fe7ed4.htm" />
<HelpKINode Title="BlazorContext.CallJs&lt;TResult&gt; method" Url="html/7ceacaee-4141-0fde-e9bd-3da938fe7ed4.htm" />
<HelpKINode Title="BlazorContext.CallJsAsync(Of TResult) method" Url="html/f4dedc41-a36d-58bb-5dd9-1a2f2d8faa8f.htm" />
<HelpKINode Title="BlazorContext.CallJsAsync&lt;TResult&gt; method" Url="html/f4dedc41-a36d-58bb-5dd9-1a2f2d8faa8f.htm" />
<HelpKINode Title="BlazorContext.CallJsVoid method" Url="html/5fcc2706-c9a6-f4af-f040-9b5b3c0f17f6.htm" />
<HelpKINode Title="BlazorContext.CallJsVoidAsync method" Url="html/8aa2d088-01e9-7263-ff8c-05dc910c04e6.htm" />
<HelpKINode Title="BlazorContext.CallPHP method" Url="html/b5f7b43d-9442-4d18-fa9a-df923fb0e2ce.htm" />
<HelpKINode Title="BlazorContext.Create method" Url="html/117fe2c6-f7d7-9412-009d-925119c4e9a2.htm" />
<HelpKINode Title="BlazorContext.Dispose method" Url="html/1f7c75bf-8854-9218-f71b-afb502b45000.htm" />
<HelpKINode Title="BlazorContext.GetDownloadFile method" Url="html/362699cf-e431-ebeb-8b92-db5fce2481de.htm" />
<HelpKINode Title="BlazorContext.SetFilesAsync method" Url="html/2a1eadda-145f-974b-1a1b-6b2b24e89cc6.htm" />
<HelpKINode Title="BlazorContext.SetGet method" Url="html/e201fc4a-3e2d-e1a0-d342-94045c46a716.htm" />
<HelpKINode Title="BlazorContext.SetPost method" Url="html/935f5b0d-6b4b-92a3-8f42-59152e809a3e.htm" />
<HelpKINode Title="BlazorContext.StartRender method" Url="html/03f9c18d-9c28-eb43-14d6-cf82a9d32dd2.htm" />
<HelpKINode Title="BlazorContext.StopRender method" Url="html/e4cdb947-cbfa-9ad5-bd6a-2e3886fabf0e.htm" />
<HelpKINode Title="BlazorContext._fileManager field" Url="html/f502c27c-a550-f883-b34e-412a1c6cc4e8.htm" />
<HelpKINode Title="BlazorContext._js field" Url="html/ecec0be0-43c1-040f-38d3-453f8e5c69b1.htm" />
<HelpKINode Title="BlazorContext._logger field" Url="html/962c129f-1334-e2e2-bff7-ca0b60c74dff.htm" />
<HelpKINode Title="BlazorContext._module field" Url="html/b3a49a7c-ed74-2aa9-6062-61a62f047245.htm" />
<HelpKINode Title="BlazorWritable interface">
<HelpKINode Title="BlazorWritable Interface" Url="html/9c8a3a26-73fd-5c69-7965-13beecb249d8.htm" />
<HelpKINode Title="methods" Url="html/6134bd0e-a2fa-5f38-2fc0-7f19c246db32.htm" />
</HelpKINode>
<HelpKINode Title="BlazorWritable.writeWithTreeBuilder method" Url="html/3abd2f9b-2000-a04b-a9b0-aeab05f0be2c.htm" />
<HelpKINode Title="BlazorWriter class">
<HelpKINode Title="BlazorWriter Class" Url="html/572707d2-a315-4c73-1505-cc9736347d37.htm" />
<HelpKINode Title="constructor" Url="html/f7f4194b-a1f7-0e08-5065-e8d58d64e162.htm" />
<HelpKINode Title="fields" Url="html/c00a6e3d-4450-30d7-056f-340de3982eed.htm" />
<HelpKINode Title="methods" Url="html/82c2d943-8f2f-d368-94e3-74ff12d35644.htm" />
<HelpKINode Title="properties" Url="html/83328656-9f4c-a5fe-bbde-83b9db674581.htm" />
</HelpKINode>
<HelpKINode Title="BlazorWriter.BlazorWriter constructor" Url="html/f7f4194b-a1f7-0e08-5065-e8d58d64e162.htm" />
<HelpKINode Title="BlazorWriter.CreateConsole method" Url="html/1840a4e9-46c2-1764-e4e7-36db19ac78e1.htm" />
<HelpKINode Title="BlazorWriter.CreateTree method" Url="html/ba663614-cea6-8611-606d-5d04a6724625.htm" />
<HelpKINode Title="BlazorWriter.Dispose method" Url="html/9d4a3ef9-7f85-2bfc-319e-3760e0ff6b4c.htm" />
<HelpKINode Title="BlazorWriter.Encoding property" Url="html/1a4d8f07-0012-68e4-c6bc-f82508a4d1b7.htm" />
<HelpKINode Title="BlazorWriter.Flush method" Url="html/e6103205-8795-e7da-8448-b9f5e0b8d77f.htm" />
<HelpKINode Title="BlazorWriter.Write method" Url="html/a57e80fe-1a1e-de1f-83ca-45805ddbd808.htm" />
<HelpKINode Title="BlazorWriter._buffer field" Url="html/f05cf8e0-918e-1411-7db1-590f74248d5e.htm" />
<HelpKINode Title="BlazorWriter._builder field" Url="html/fc0322d4-8dfd-27b3-6a41-0b0d4753c830.htm" />
<HelpKINode Title="BrowserFile class">
<HelpKINode Title="BrowserFile Class" Url="html/91e28a69-b22f-adfa-dcee-b030736cbb2d.htm" />
<HelpKINode Title="constructor" Url="html/065a6c22-88ca-f26f-a492-e53128d70d9b.htm" />
<HelpKINode Title="properties" Url="html/0d55dcc2-bef4-ad5f-374c-535e5164301b.htm" />
</HelpKINode>
<HelpKINode Title="BrowserFile.BrowserFile constructor" Url="html/065a6c22-88ca-f26f-a492-e53128d70d9b.htm" />
<HelpKINode Title="BrowserFile.id property" Url="html/8c44304e-039e-3332-9343-b0a56991c300.htm" />
<HelpKINode Title="BrowserFile.name property" Url="html/8c5bac27-8dc5-fc1d-9fb7-fa98b5a035d5.htm" />
<HelpKINode Title="BrowserFile.size property" Url="html/1858c8d4-73bc-648f-5fb0-f338e0809c2b.htm" />
<HelpKINode Title="BrowserFile.type property" Url="html/cdb5c859-4ac2-ea5d-f19d-35108008fe2c.htm" />
<HelpKINode Title="Builder field" Url="html/a6663c97-e036-e481-22df-d42729b058ef.htm" />
<HelpKINode Title="BuildRenderTree method" Url="html/dade2ef9-f791-012d-1806-34b357400ed2.htm" />
<HelpKINode Title="BusyNavigation method" Url="html/666ad092-f8e1-f2f2-5a2d-e32006143964.htm" />
<HelpKINode Title="CallJs(Of TResult) method">
<HelpKINode Title="BlazorContext.CallJs(TResult) Method " Url="html/7ceacaee-4141-0fde-e9bd-3da938fe7ed4.htm" />
<HelpKINode Title="GenericHelper.CallJs(TResult) Method " Url="html/2d3b382c-b628-4e59-62a7-609844becf57.htm" />
</HelpKINode>
<HelpKINode Title="CallJs&lt;TResult&gt; method">
<HelpKINode Title="BlazorContext.CallJs(TResult) Method " Url="html/7ceacaee-4141-0fde-e9bd-3da938fe7ed4.htm" />
<HelpKINode Title="GenericHelper.CallJs(TResult) Method " Url="html/2d3b382c-b628-4e59-62a7-609844becf57.htm" />
</HelpKINode>
<HelpKINode Title="CallJsAsync(Of TResult) method">
<HelpKINode Title="BlazorContext.CallJsAsync(TResult) Method " Url="html/f4dedc41-a36d-58bb-5dd9-1a2f2d8faa8f.htm" />
<HelpKINode Title="GenericHelper.CallJsAsync(TResult) Method " Url="html/1a6fbe5c-bd30-63ef-47d7-84d02834f736.htm" />
</HelpKINode>
<HelpKINode Title="CallJsAsync&lt;TResult&gt; method">
<HelpKINode Title="BlazorContext.CallJsAsync(TResult) Method " Url="html/f4dedc41-a36d-58bb-5dd9-1a2f2d8faa8f.htm" />
<HelpKINode Title="GenericHelper.CallJsAsync(TResult) Method " Url="html/1a6fbe5c-bd30-63ef-47d7-84d02834f736.htm" />
</HelpKINode>
<HelpKINode Title="CallJsVoid method">
<HelpKINode Title="BlazorContext.CallJsVoid Method " Url="html/5fcc2706-c9a6-f4af-f040-9b5b3c0f17f6.htm" />
<HelpKINode Title="InteropUtils.CallJsVoid Method " Url="html/6fdf4e91-be52-cef8-f19b-17f19809fe47.htm" />
</HelpKINode>
<HelpKINode Title="CallJsVoidAsync method">
<HelpKINode Title="BlazorContext.CallJsVoidAsync Method " Url="html/8aa2d088-01e9-7263-ff8c-05dc910c04e6.htm" />
<HelpKINode Title="InteropUtils.CallJsVoidAsync Method " Url="html/03daa401-fb46-f6a9-4db4-2ff33b284912.htm" />
</HelpKINode>
<HelpKINode Title="CallPHP method" Url="html/b5f7b43d-9442-4d18-fa9a-df923fb0e2ce.htm" />
<HelpKINode Title="ClassBuilder class">
<HelpKINode Title="ClassBuilder Class" Url="html/933dcd64-4995-bab0-fea0-334fffa9001b.htm" />
<HelpKINode Title="constructor" Url="html/e59d27c6-064e-53f4-6510-51304ceba478.htm" />
<HelpKINode Title="fields" Url="html/261a3181-07b8-345d-4b47-bf92efc900a4.htm" />
<HelpKINode Title="methods" Url="html/b894b082-ea1c-7269-d8d3-723e112fcb90.htm" />
</HelpKINode>
<HelpKINode Title="ClassBuilder.add method" Url="html/124dd83c-3168-2488-00c7-a9dcc82a1706.htm" />
<HelpKINode Title="ClassBuilder.ClassBuilder constructor" Url="html/e59d27c6-064e-53f4-6510-51304ceba478.htm" />
<HelpKINode Title="ClassBuilder.remove method" Url="html/6ca9dda2-a461-9a4f-5b11-c65f2ac716c9.htm" />
<HelpKINode Title="ClassBuilder.ToString method" Url="html/a02b1924-f32a-3e34-8d89-81ade3da9eb3.htm" />
<HelpKINode Title="ClassBuilder._classes field" Url="html/aa80dab1-1dfd-061c-021d-a5d9d2b053f1.htm" />
<HelpKINode Title="classes field" Url="html/36890f6b-528d-0dae-4575-777ffb9fa371.htm" />
<HelpKINode Title="CloseElement method" Url="html/94829119-d430-1914-5018-1b0ec6bcfe88.htm" />
<HelpKINode Title="Component field" Url="html/8ad7661f-e025-3eb4-53de-a702c1fb9882.htm" />
<HelpKINode Title="ComponentNavigation method" Url="html/1163304e-65c8-8562-280a-d433ccb05370.htm" />
<HelpKINode Title="content field">
<HelpKINode Title="Tag.content Field" Url="html/692fa9d4-bfff-7d1d-70a8-a775d5d15a84.htm" />
<HelpKINode Title="Text.content Field" Url="html/ed33d8c4-fa92-4310-4f8e-496afacbc5ab.htm" />
</HelpKINode>
<HelpKINode Title="ContextLifetime property" Url="html/c8dc7ddd-24b5-df5a-d427-5063e3101c90.htm" />
<HelpKINode Title="Create method" Url="html/117fe2c6-f7d7-9412-009d-925119c4e9a2.htm" />
<HelpKINode Title="CreateAsync method" Url="html/a9396a4a-7364-b1b9-62ff-43f7e8311f09.htm" />
<HelpKINode Title="CreateConsole method" Url="html/1840a4e9-46c2-1764-e4e7-36db19ac78e1.htm" />
<HelpKINode Title="createFile field" Url="html/98c468cd-1d21-3112-985d-19690f1a84c3.htm" />
<HelpKINode Title="CreateFile method">
<HelpKINode Title="FileUtils.CreateFile Method " Url="html/1c79d954-4f38-b599-c5fe-7f26593a2119.htm" />
<HelpKINode Title="PHPModule.CreateFile Method " Url="html/30c7c8b5-3f33-2e5d-1eab-f693dad5f62a.htm" />
</HelpKINode>
<HelpKINode Title="CreateTree method" Url="html/ba663614-cea6-8611-606d-5d04a6724625.htm" />
<HelpKINode Title="createUrlObject field" Url="html/8250b2b2-744e-3079-8286-e75ab3617b34.htm" />
<HelpKINode Title="CreateUrlObject method">
<HelpKINode Title="FileUtils.CreateUrlObject Method " Url="html/0753b1d7-ec64-b3ce-c988-2d13507ab3f8.htm" />
<HelpKINode Title="PHPModule.CreateUrlObject Method " Url="html/8ed4ccfd-d0ae-490a-8dec-709521cbbb60.htm" />
</HelpKINode>
<HelpKINode Title="CssBuilder class">
<HelpKINode Title="CssBuilder Class" Url="html/56d85b4a-99e4-9051-b0f6-63077014e9e2.htm" />
<HelpKINode Title="constructor" Url="html/2e2ddc39-920d-d153-3a1d-6db2d502052b.htm" />
<HelpKINode Title="fields" Url="html/eb2960e7-a34a-e021-e676-52d9e580967a.htm" />
<HelpKINode Title="methods" Url="html/5367524f-e5ae-a66a-71ef-c0fd8dc7df2b.htm" />
</HelpKINode>
<HelpKINode Title="CssBuilder.CssBuilder constructor" Url="html/2e2ddc39-920d-d153-3a1d-6db2d502052b.htm" />
<HelpKINode Title="CssBuilder.offsetExists method" Url="html/96a47ee5-66a5-a969-02cd-7b2da95346df.htm" />
<HelpKINode Title="CssBuilder.offsetGet method" Url="html/f932593d-f6b9-ee35-a1fd-eeebb041824a.htm" />
<HelpKINode Title="CssBuilder.offsetSet method" Url="html/5ab68224-7893-ec65-967e-a4397f1b2124.htm" />
<HelpKINode Title="CssBuilder.offsetUnset method" Url="html/54455188-a5a4-54d7-bfaa-c4e1af5e7200.htm" />
<HelpKINode Title="CssBuilder.ToString method" Url="html/419f781c-2876-9fe2-b3bd-8f68a49316eb.htm" />
<HelpKINode Title="CssBuilder._styles field" Url="html/de65b2cf-5c02-ace2-8301-0fa0c6c0b989.htm" />
<HelpKINode Title="Ctx property" Url="html/51b6c3f3-cdc0-cc83-58d7-1344fae510a8.htm" />
<HelpKINode Title="Dispose method">
<HelpKINode Title="BlazorContext.Dispose Method " Url="html/1f7c75bf-8854-9218-f71b-afb502b45000.htm" />
<HelpKINode Title="BlazorWriter.Dispose Method " Url="html/9d4a3ef9-7f85-2bfc-319e-3760e0ff6b4c.htm" />
<HelpKINode Title="Log.Dispose Method " Url="html/5a1b3448-21dc-7a09-fa67-ae04754b3035.htm" />
<HelpKINode Title="PhpComponent.Dispose Method " Url="html/9726d576-92d1-0a7c-d6e3-6d2034961bf7.htm" />
<HelpKINode Title="PHPModule.Dispose Method " Url="html/f818cd9c-04af-c45a-21c3-1fc983b01292.htm" />
<HelpKINode Title="PHPService.Dispose Method " Url="html/b41e0842-d3d2-1e14-2c79-e0485802affe.htm" />
<HelpKINode Title="Timer.Dispose Method " Url="html/abc5b41e-2592-6027-801d-9cf0ca35dd9a.htm" />
</HelpKINode>
<HelpKINode Title="downloadFile field" Url="html/af0d7d4b-f70e-b525-904c-476c8fb2b3a5.htm" />
<HelpKINode Title="DownloadFile method">
<HelpKINode Title="FileUtils.DownloadFile Method " Url="html/b9cc0962-f6d7-762a-672c-2a2005cc7c90.htm" />
<HelpKINode Title="Log.DownloadFile Method " Url="html/f3990380-911c-9c99-2317-6950b59149e4.htm" />
<HelpKINode Title="PHPModule.DownloadFile Method " Url="html/1cafae73-5609-05b1-8730-83861aa0a18e.htm" />
</HelpKINode>
<HelpKINode Title="DownloadFilesAsync method" Url="html/f951f22c-f007-a2cc-90f7-34787614300f.htm" />
<HelpKINode Title="Encoding property" Url="html/1a4d8f07-0012-68e4-c6bc-f82508a4d1b7.htm" />
<HelpKINode Title="Evaluate method" Url="html/affe45a4-95e9-6a7c-b0f1-d24b185a07f7.htm" />
<HelpKINode Title="EventHelper class">
<HelpKINode Title="EventHelper Class" Url="html/3a4c3348-6ec2-1fe5-70b1-0ef0fa120305.htm" />
<HelpKINode Title="methods" Url="html/df740326-8d81-6dfa-a811-418baaeb8da6.htm" />
</HelpKINode>
<HelpKINode Title="EventHelper.AddEventListener(Of TEventArgs) method" Url="html/9c9acce0-4086-2b2f-e4b3-96aff96dfe43.htm" />
<HelpKINode Title="EventHelper.AddEventListener&lt;TEventArgs&gt; method" Url="html/9c9acce0-4086-2b2f-e4b3-96aff96dfe43.htm" />
<HelpKINode Title="EventHelper.AddSimpleEventListener method" Url="html/24b0b196-3fcd-39e8-da78-abcd5ed0296c.htm" />
<HelpKINode Title="events field" Url="html/d31a151d-4c97-b8c5-9148-6aa8ec8883e9.htm" />
<HelpKINode Title="FetchFiles method" Url="html/d9c921d1-b383-1173-a007-ff7cb80bc290.htm" />
<HelpKINode Title="fieldName property" Url="html/c4a3cc4d-81a7-ec6c-25f5-79fdf65d2db7.htm" />
<HelpKINode Title="FileManager class">
<HelpKINode Title="FileManager Class" Url="html/4364e3bb-0312-bc6f-0731-fd269f858f62.htm" />
<HelpKINode Title="constructor" Url="html/15b66901-e40b-2aed-7485-e4b1dda867c0.htm" />
<HelpKINode Title="fields" Url="html/e888e216-56d4-12f1-aa83-e82fd36b765f.htm" />
<HelpKINode Title="methods" Url="html/08d9f02f-9814-2694-b795-2c1a104c8307.htm" />
</HelpKINode>
<HelpKINode Title="FileManager.DownloadFilesAsync method" Url="html/f951f22c-f007-a2cc-90f7-34787614300f.htm" />
<HelpKINode Title="FileManager.FetchFiles method" Url="html/d9c921d1-b383-1173-a007-ff7cb80bc290.htm" />
<HelpKINode Title="FileManager.FileManager constructor" Url="html/15b66901-e40b-2aed-7485-e4b1dda867c0.htm" />
<HelpKINode Title="FileManager.GetFileData method" Url="html/8dca3263-9ed0-75c5-89f6-60e218b64a8e.htm" />
<HelpKINode Title="FileManager._downloaded field" Url="html/fac35f0a-1e4f-4de0-938e-63ff5f7a09df.htm" />
<HelpKINode Title="FileManager._fetched field" Url="html/84ea8c0d-e381-e647-8598-771423833d01.htm" />
<HelpKINode Title="FileManager._logger field" Url="html/708ff355-0d79-6233-ae9f-9fdd86f1a135.htm" />
<HelpKINode Title="FileManager._module field" Url="html/99f86a56-af48-85c2-6c2e-d1c8c82d142f.htm" />
<HelpKINode Title="FileUtils class">
<HelpKINode Title="FileUtils Class" Url="html/7a25c2af-35c1-9400-f498-16cc7758cc55.htm" />
<HelpKINode Title="methods" Url="html/248fc82a-7cec-dd31-dd74-865fd52094cb.htm" />
</HelpKINode>
<HelpKINode Title="FileUtils.CreateFile method" Url="html/1c79d954-4f38-b599-c5fe-7f26593a2119.htm" />
<HelpKINode Title="FileUtils.CreateUrlObject method" Url="html/0753b1d7-ec64-b3ce-c988-2d13507ab3f8.htm" />
<HelpKINode Title="FileUtils.DownloadFile method" Url="html/b9cc0962-f6d7-762a-672c-2a2005cc7c90.htm" />
<HelpKINode Title="FileUtils.GetBrowserFileContent method" Url="html/db66a780-26ea-ea1c-c671-d21ef77880db.htm" />
<HelpKINode Title="Flush method" Url="html/e6103205-8795-e7da-8448-b9f5e0b8d77f.htm" />
<HelpKINode Title="FormFile class">
<HelpKINode Title="FormFile Class" Url="html/e6cc319f-7af9-9119-a168-9be08c4c6de8.htm" />
<HelpKINode Title="constructor" Url="html/df15a596-1059-759b-b810-494494689281.htm" />
<HelpKINode Title="properties" Url="html/8aa609d5-6e8b-6e35-9837-f8da3429a838.htm" />
</HelpKINode>
<HelpKINode Title="FormFile.fieldName property" Url="html/c4a3cc4d-81a7-ec6c-25f5-79fdf65d2db7.htm" />
<HelpKINode Title="FormFile.FormFile constructor" Url="html/df15a596-1059-759b-b810-494494689281.htm" />
<HelpKINode Title="GenericHelper class">
<HelpKINode Title="GenericHelper Class" Url="html/5b908e75-9d32-9881-7462-b3bbaa9e7f9c.htm" />
<HelpKINode Title="methods" Url="html/3692489d-bfdc-a4d1-fe54-64cb384b92a3.htm" />
</HelpKINode>
<HelpKINode Title="GenericHelper.CallJs(Of TResult) method" Url="html/2d3b382c-b628-4e59-62a7-609844becf57.htm" />
<HelpKINode Title="GenericHelper.CallJs&lt;TResult&gt; method" Url="html/2d3b382c-b628-4e59-62a7-609844becf57.htm" />
<HelpKINode Title="GenericHelper.CallJsAsync(Of TResult) method" Url="html/1a6fbe5c-bd30-63ef-47d7-84d02834f736.htm" />
<HelpKINode Title="GenericHelper.CallJsAsync&lt;TResult&gt; method" Url="html/1a6fbe5c-bd30-63ef-47d7-84d02834f736.htm" />
<HelpKINode Title="GetBrowserFileContent method" Url="html/db66a780-26ea-ea1c-c671-d21ef77880db.htm" />
<HelpKINode Title="GetDownloadFile method" Url="html/362699cf-e431-ebeb-8b92-db5fce2481de.htm" />
<HelpKINode Title="getFileContentAsBase64 field" Url="html/e391613a-2490-09d8-63ec-58228cf36fad.htm" />
<HelpKINode Title="GetFileData method" Url="html/8dca3263-9ed0-75c5-89f6-60e218b64a8e.htm" />
<HelpKINode Title="getFiles field" Url="html/7f707f53-ad73-399c-1503-4591ce96be9c.htm" />
<HelpKINode Title="GetFiles method" Url="html/2b222150-0b84-7b10-a1a1-f3b9adcc2a18.htm" />
<HelpKINode Title="GetModule method">
<HelpKINode Title="IPHPService.GetModule Method " Url="html/4e392b31-0bc3-3683-096d-cc7338a853ab.htm" />
<HelpKINode Title="PHPService.GetModule Method " Url="html/1bcf3476-6f89-4872-5e54-927004a24585.htm" />
</HelpKINode>
<HelpKINode Title="getPost field" Url="html/bdc4c634-ac63-330f-4c55-e5e16c933418.htm" />
<HelpKINode Title="GetPostData method" Url="html/10e3ccba-4c33-6a60-cece-d80d7d1862c6.htm" />
<HelpKINode Title="Handler field" Url="html/2a8157a9-ba24-df7d-92f4-d2961e1a7f47.htm" />
<HelpKINode Title="Handler property" Url="html/1de22cd6-2a2c-1b18-08e1-334bb6e3ebbe.htm" />
<HelpKINode Title="IApplicationBuilderExtensions class">
<HelpKINode Title="IApplicationBuilderExtensions Class" Url="html/69ab04a2-0110-291f-37d7-f015cedd79bd.htm" />
<HelpKINode Title="methods" Url="html/d27b7dac-069c-fc86-d675-25782eb0287e.htm" />
</HelpKINode>
<HelpKINode Title="IApplicationBuilderExtensions.UseAdditionalWebStaticAssets method" Url="html/6ca8189b-2ae0-ff5f-a5a3-721329d993bd.htm" />
<HelpKINode Title="IComponent.Attach explicitly implemented method" Url="html/fba2f54a-afb2-a1e1-5f31-adc12d270e82.htm" />
<HelpKINode Title="IComponent.SetParametersAsync explicitly implemented method" Url="html/d058d380-2b2d-eee4-97cd-521499a9c5a4.htm" />
<HelpKINode Title="id property" Url="html/8c44304e-039e-3332-9343-b0a56991c300.htm" />
<HelpKINode Title="IDisposable.Dispose explicitly implemented method" Url="html/0e3cc136-0087-5358-ef3b-803ac0c6a36b.htm" />
<HelpKINode Title="IHandleAfterRender.OnAfterRenderAsync explicitly implemented method" Url="html/79748d07-8c3b-3116-ee0f-060fa3a02819.htm" />
<HelpKINode Title="Initialize method" Url="html/253afe8e-1bf1-d10e-22be-b4fb66654866.htm" />
<HelpKINode Title="InitializePHPAsync method">
<HelpKINode Title="IPHPService.InitializePHPAsync Method " Url="html/ea2ae6a2-92f1-7229-3716-5745b538be8f.htm" />
<HelpKINode Title="PHPService.InitializePHPAsync Method " Url="html/11482d2c-78be-4581-0ac1-a3737662061f.htm" />
</HelpKINode>
<HelpKINode Title="InteropUtils class">
<HelpKINode Title="InteropUtils Class" Url="html/2eb87aec-a43f-4ccc-ad0c-e8ed76041f01.htm" />
<HelpKINode Title="methods" Url="html/64c43d67-dad8-dc0b-bf8a-92cf7fe6236c.htm" />
</HelpKINode>
<HelpKINode Title="InteropUtils.CallJsVoid method" Url="html/6fdf4e91-be52-cef8-f19b-17f19809fe47.htm" />
<HelpKINode Title="InteropUtils.CallJsVoidAsync method" Url="html/03daa401-fb46-f6a9-4db4-2ff33b284912.htm" />
<HelpKINode Title="IPHPService interface">
<HelpKINode Title="IPHPService Interface" Url="html/844c6e1f-cb4b-457b-38ea-9e65538314f9.htm" />
<HelpKINode Title="methods" Url="html/607a84c4-8ad8-c532-0eeb-7fa392f3d7d0.htm" />
</HelpKINode>
<HelpKINode Title="IPHPService.GetModule method" Url="html/4e392b31-0bc3-3683-096d-cc7338a853ab.htm" />
<HelpKINode Title="IPHPService.InitializePHPAsync method" Url="html/ea2ae6a2-92f1-7229-3716-5745b538be8f.htm" />
<HelpKINode Title="IsFiles field" Url="html/ecddba59-1193-534c-f482-e22360e24563.htm" />
<HelpKINode Title="isFilesPresented method" Url="html/0d984cd5-43d8-b5a9-a660-81e4aa3e4166.htm" />
<HelpKINode Title="IsMatch property" Url="html/4a19cda8-207d-7a0c-4b55-bb69e9057875.htm" />
<HelpKINode Title="IsPost field" Url="html/988af61d-4978-5215-437f-dbea4a1fc87c.htm" />
<HelpKINode Title="IsPostRequest method" Url="html/6c920949-977b-7dc2-a792-ea60e0a7ba42.htm" />
<HelpKINode Title="Js property">
<HelpKINode Title="PhpComponent.Js Property " Url="html/b42ec10e-a092-d31b-9a85-9ea2384af6a7.htm" />
<HelpKINode Title="PhpScriptProvider.Js Property " Url="html/10edfd9f-6e23-1e07-6677-96d56acff1d2.htm" />
</HelpKINode>
<HelpKINode Title="JsResource class">
<HelpKINode Title="JsResource Class" Url="html/b8b50bb3-4509-fa0f-a0b4-758757f7b067.htm" />
<HelpKINode Title="constructor" Url="html/c8f1b2e6-f093-a189-f3bd-5c349e5cdc1a.htm" />
<HelpKINode Title="fields" Url="html/f3fd1e54-3e65-9b44-5913-4cad5ac27c52.htm" />
</HelpKINode>
<HelpKINode Title="JsResource.createFile field" Url="html/98c468cd-1d21-3112-985d-19690f1a84c3.htm" />
<HelpKINode Title="JsResource.createUrlObject field" Url="html/8250b2b2-744e-3079-8286-e75ab3617b34.htm" />
<HelpKINode Title="JsResource.downloadFile field" Url="html/af0d7d4b-f70e-b525-904c-476c8fb2b3a5.htm" />
<HelpKINode Title="JsResource.getFileContentAsBase64 field" Url="html/e391613a-2490-09d8-63ec-58228cf36fad.htm" />
<HelpKINode Title="JsResource.getFiles field" Url="html/7f707f53-ad73-399c-1503-4591ce96be9c.htm" />
<HelpKINode Title="JsResource.getPost field" Url="html/bdc4c634-ac63-330f-4c55-e5e16c933418.htm" />
<HelpKINode Title="JsResource.IsFiles field" Url="html/ecddba59-1193-534c-f482-e22360e24563.htm" />
<HelpKINode Title="JsResource.IsPost field" Url="html/988af61d-4978-5215-437f-dbea4a1fc87c.htm" />
<HelpKINode Title="JsResource.JsResource constructor" Url="html/c8f1b2e6-f093-a189-f3bd-5c349e5cdc1a.htm" />
<HelpKINode Title="JsResource.turnFormsToClient field" Url="html/4f806006-bb03-1aa9-dd6e-e7c7a9796331.htm" />
<HelpKINode Title="Log class">
<HelpKINode Title="Log Class" Url="html/f1aca1bd-0bf9-b70a-4441-d81c025695af.htm" />
<HelpKINode Title="constructor" Url="html/23e099be-80a5-e14b-5738-99db717a854c.htm" />
<HelpKINode Title="fields" Url="html/437f621b-18fc-6cc7-d19c-b04897a39eaa.htm" />
<HelpKINode Title="methods" Url="html/49ecc0f0-1300-b5b7-4f2d-8f4455c3a88f.htm" />
</HelpKINode>
<HelpKINode Title="Log.Attach method" Url="html/08d46867-5e5a-a1d0-6133-cd1b1a412ba3.htm" />
<HelpKINode Title="Log.BusyNavigation method" Url="html/666ad092-f8e1-f2f2-5a2d-e32006143964.htm" />
<HelpKINode Title="Log.ComponentNavigation method" Url="html/1163304e-65c8-8562-280a-d433ccb05370.htm" />
<HelpKINode Title="Log.Dispose method" Url="html/5a1b3448-21dc-7a09-fa67-ae04754b3035.htm" />
<HelpKINode Title="Log.DownloadFile method" Url="html/f3990380-911c-9c99-2317-6950b59149e4.htm" />
<HelpKINode Title="Log.Log constructor" Url="html/23e099be-80a5-e14b-5738-99db717a854c.htm" />
<HelpKINode Title="Log.Navigation method" Url="html/174679de-d7eb-5879-63c0-b1e6e0f99bc3.htm" />
<HelpKINode Title="Log.NavigationFailed method" Url="html/2ef55f2e-a5cc-9938-e604-ee4232713562.htm" />
<HelpKINode Title="Log.PrintFiles method" Url="html/80fd1178-8ffc-1ce7-97a4-f258fe2831b2.htm" />
<HelpKINode Title="Log.PrintGet method" Url="html/0b7a9d89-2554-3b54-aac2-d059f083317b.htm" />
<HelpKINode Title="Log.PrintPost method" Url="html/f8a5c197-44e6-0a43-c0fa-01a63523bce2.htm" />
<HelpKINode Title="Log.ScriptNavigation method" Url="html/3d7cc1a4-88ea-1514-f6c1-a9e3abeee923.htm" />
<HelpKINode Title="Log.SetParameters method" Url="html/c182d9c1-0966-7640-bed1-1e13969010f1.htm" />
<HelpKINode Title="Log._attach field" Url="html/54a4370d-9dcb-264f-1c1c-b7341206c46b.htm" />
<HelpKINode Title="Log._busyNavigating field" Url="html/38d55766-3c59-0193-0152-eb4621e7a20a.htm" />
<HelpKINode Title="Log._dictionary field" Url="html/b727f608-7ddf-cd4c-6271-1cb5b2793cdb.htm" />
<HelpKINode Title="Log._dispose field" Url="html/be376c4d-6867-bd1f-64cc-b51dc220dcc5.htm" />
<HelpKINode Title="Log._download field" Url="html/4b5af283-46a0-24cc-0390-78aab1d231b7.htm" />
<HelpKINode Title="Log._navigating field" Url="html/c4ce3593-08cf-388e-2a56-30bb490f9d04.htm" />
<HelpKINode Title="Log._navigatingComponent field" Url="html/0e88e65d-50c6-8e22-69b4-086bbe99425b.htm" />
<HelpKINode Title="Log._navigatingFailed field" Url="html/2683017e-0836-bf45-c2ea-0372a36a741d.htm" />
<HelpKINode Title="Log._navigatingScript field" Url="html/daaece18-3453-518e-55b3-4ea02f760695.htm" />
<HelpKINode Title="Log._setParameters field" Url="html/3b9f0bb1-998f-3480-f204-08968566b824.htm" />
<HelpKINode Title="LoggerFactory property">
<HelpKINode Title="PhpComponent.LoggerFactory Property " Url="html/da173979-cf93-24fc-8314-81a74f8486d3.htm" />
<HelpKINode Title="PhpScriptProvider.LoggerFactory Property " Url="html/9e38772b-4114-7d5c-dc6f-0bd2780e13ed.htm" />
</HelpKINode>
<HelpKINode Title="Match method">
<HelpKINode Title="MatchResult.Match Method " Url="html/169e34fc-1658-c535-ff55-4c95a002a0b0.htm" />
<HelpKINode Title="PhpComponentRouteManager.Match Method " Url="html/9f31f24e-17f1-d778-315f-adb719f6c9ff.htm" />
<HelpKINode Title="Route.Match Method " Url="html/f72f2e3e-5025-46cc-1627-f367f1538ca6.htm" />
</HelpKINode>
<HelpKINode Title="MatchedRoute property" Url="html/2db20b49-d6f4-1915-e433-cbf40a62611c.htm" />
<HelpKINode Title="MatchResult class">
<HelpKINode Title="MatchResult Class" Url="html/359cea19-f4a5-04c4-d42c-0e78a6b5238a.htm" />
<HelpKINode Title="constructor" Url="html/3add87d3-220d-a140-4a72-7cdc075f06a5.htm" />
<HelpKINode Title="methods" Url="html/0ab90bdc-3b11-ffec-4c9a-0e4c315a391b.htm" />
<HelpKINode Title="properties" Url="html/f5c059d2-b00b-4945-5134-b5f457778ff9.htm" />
</HelpKINode>
<HelpKINode Title="MatchResult.IsMatch property" Url="html/4a19cda8-207d-7a0c-4b55-bb69e9057875.htm" />
<HelpKINode Title="MatchResult.Match method" Url="html/169e34fc-1658-c535-ff55-4c95a002a0b0.htm" />
<HelpKINode Title="MatchResult.MatchedRoute property" Url="html/2db20b49-d6f4-1915-e433-cbf40a62611c.htm" />
<HelpKINode Title="MatchResult.MatchResult constructor" Url="html/3add87d3-220d-a140-4a72-7cdc075f06a5.htm" />
<HelpKINode Title="MatchResult.NoMatch method" Url="html/f77901bb-9930-dc2d-2168-32b823ed0800.htm" />
<HelpKINode Title="name field" Url="html/cce9ba27-4334-eb49-322e-21a0c2e38a46.htm" />
<HelpKINode Title="name property" Url="html/8c5bac27-8dc5-fc1d-9fb7-fa98b5a035d5.htm" />
<HelpKINode Title="Navigating property" Url="html/b4575e86-bc5d-8040-0c72-6c49ccf82bdc.htm" />
<HelpKINode Title="Navigation method" Url="html/174679de-d7eb-5879-63c0-b1e6e0f99bc3.htm" />
<HelpKINode Title="NavigationFailed method" Url="html/2ef55f2e-a5cc-9938-e604-ee4232713562.htm" />
<HelpKINode Title="NavigationInterception property" Url="html/19099e7e-7cce-80be-e856-51fbf71e5fff.htm" />
<HelpKINode Title="NavigationManager property" Url="html/93d9d0a0-aaa2-447d-c401-4dfd3bf9373c.htm" />
<HelpKINode Title="NoMatch method" Url="html/f77901bb-9930-dc2d-2168-32b823ed0800.htm" />
<HelpKINode Title="NotFound property" Url="html/8218a6b8-e93c-12b2-ee6a-971809572c30.htm" />
<HelpKINode Title="offsetExists method">
<HelpKINode Title="AttributeCollection.offsetExists Method " Url="html/29c4f1d6-7242-84ba-5ef3-f6b88d65b818.htm" />
<HelpKINode Title="CssBuilder.offsetExists Method " Url="html/96a47ee5-66a5-a969-02cd-7b2da95346df.htm" />
</HelpKINode>
<HelpKINode Title="offsetGet method">
<HelpKINode Title="AttributeCollection.offsetGet Method " Url="html/ebf23910-6fcc-3ae4-453c-e7473885cd72.htm" />
<HelpKINode Title="CssBuilder.offsetGet Method " Url="html/f932593d-f6b9-ee35-a1fd-eeebb041824a.htm" />
</HelpKINode>
<HelpKINode Title="offsetSet method">
<HelpKINode Title="AttributeCollection.offsetSet Method " Url="html/052636ce-42df-ae89-1801-9bd237a5ced0.htm" />
<HelpKINode Title="CssBuilder.offsetSet Method " Url="html/5ab68224-7893-ec65-967e-a4397f1b2124.htm" />
</HelpKINode>
<HelpKINode Title="offsetUnset method">
<HelpKINode Title="AttributeCollection.offsetUnset Method " Url="html/7a050771-2bee-1149-3313-440f826f96a1.htm" />
<HelpKINode Title="CssBuilder.offsetUnset Method " Url="html/54455188-a5a4-54d7-bfaa-c4e1af5e7200.htm" />
</HelpKINode>
<HelpKINode Title="OnInitialized method" Url="html/a00fa146-f542-23f8-788a-e55f631a10c8.htm" />
<HelpKINode Title="OnLocationChanged method" Url="html/97c9e448-816e-bfa7-cdf1-bcd70ffd5c0e.htm" />
<HelpKINode Title="OnNavigationChanged enumeration member" Url="html/d9bcf6b3-70db-a223-36c1-e5ea09bba9b0.htm" />
<HelpKINode Title="OpenElement method" Url="html/afcff0b0-a46c-edb8-ca38-23b011cc9c49.htm" />
<HelpKINode Title="Parameters property" Url="html/8eb226e0-3cba-42a2-7fd4-541350c64184.htm" />
<HelpKINode Title="Peachpie.Blazor namespace" Url="html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" />
<HelpKINode Title="Peachpie.Blazor.AttributeCollection class" Url="html/7a06a6b6-3152-2bc7-ee97-fa6c3e08dde9.htm" />
<HelpKINode Title="Peachpie.Blazor.BlazorContext class" Url="html/2ef0b2e2-f49f-3564-28c3-f1d42929ff45.htm" />
<HelpKINode Title="Peachpie.Blazor.BlazorWritable interface" Url="html/9c8a3a26-73fd-5c69-7965-13beecb249d8.htm" />
<HelpKINode Title="Peachpie.Blazor.BlazorWriter class" Url="html/572707d2-a315-4c73-1505-cc9736347d37.htm" />
<HelpKINode Title="Peachpie.Blazor.BrowserFile class" Url="html/91e28a69-b22f-adfa-dcee-b030736cbb2d.htm" />
<HelpKINode Title="Peachpie.Blazor.ClassBuilder class" Url="html/933dcd64-4995-bab0-fea0-334fffa9001b.htm" />
<HelpKINode Title="Peachpie.Blazor.CssBuilder class" Url="html/56d85b4a-99e4-9051-b0f6-63077014e9e2.htm" />
<HelpKINode Title="Peachpie.Blazor.EventHelper class" Url="html/3a4c3348-6ec2-1fe5-70b1-0ef0fa120305.htm" />
<HelpKINode Title="Peachpie.Blazor.FileManager class" Url="html/4364e3bb-0312-bc6f-0731-fd269f858f62.htm" />
<HelpKINode Title="Peachpie.Blazor.FileUtils class" Url="html/7a25c2af-35c1-9400-f498-16cc7758cc55.htm" />
<HelpKINode Title="Peachpie.Blazor.FormFile class" Url="html/e6cc319f-7af9-9119-a168-9be08c4c6de8.htm" />
<HelpKINode Title="Peachpie.Blazor.GenericHelper class" Url="html/5b908e75-9d32-9881-7462-b3bbaa9e7f9c.htm" />
<HelpKINode Title="Peachpie.Blazor.IApplicationBuilderExtensions class" Url="html/69ab04a2-0110-291f-37d7-f015cedd79bd.htm" />
<HelpKINode Title="Peachpie.Blazor.InteropUtils class" Url="html/2eb87aec-a43f-4ccc-ad0c-e8ed76041f01.htm" />
<HelpKINode Title="Peachpie.Blazor.IPHPService interface" Url="html/844c6e1f-cb4b-457b-38ea-9e65538314f9.htm" />
<HelpKINode Title="Peachpie.Blazor.JsResource class" Url="html/b8b50bb3-4509-fa0f-a0b4-758757f7b067.htm" />
<HelpKINode Title="Peachpie.Blazor.Log class" Url="html/f1aca1bd-0bf9-b70a-4441-d81c025695af.htm" />
<HelpKINode Title="Peachpie.Blazor.MatchResult class" Url="html/359cea19-f4a5-04c4-d42c-0e78a6b5238a.htm" />
<HelpKINode Title="Peachpie.Blazor.PhpComponent class" Url="html/e15bf912-0b3c-c0fb-c103-90fdfa4cf141.htm" />
<HelpKINode Title="Peachpie.Blazor.PhpComponentRouteManager class" Url="html/245596c8-b440-599b-c2b0-55475aee0d46.htm" />
<HelpKINode Title="Peachpie.Blazor.PHPModule class" Url="html/a74b72ff-6967-c8f8-98f4-652fc5adedf5.htm" />
<HelpKINode Title="Peachpie.Blazor.PhpScriptProvider class" Url="html/0ecbfd85-ef5b-4754-23cb-49d3d074cf18.htm" />
<HelpKINode Title="Peachpie.Blazor.PhpScriptProviderType enumeration" Url="html/b3d7777d-886f-4559-5f43-1e86eff3a250.htm" />
<HelpKINode Title="Peachpie.Blazor.PHPService class" Url="html/5964ee52-bd5a-8336-7883-4218afa3af7c.htm" />
<HelpKINode Title="Peachpie.Blazor.PhpTreeBuilder class" Url="html/140bc2a8-2a41-0774-5745-85190b5edcc7.htm" />
<HelpKINode Title="Peachpie.Blazor.Route class" Url="html/7985ed87-9297-3b4f-34eb-6030ea112c1f.htm" />
<HelpKINode Title="Peachpie.Blazor.RouteData structure" Url="html/652784b2-3ee6-fda9-855f-5698c5db0dba.htm" />
<HelpKINode Title="Peachpie.Blazor.ScriptInfoExtensions class" Url="html/50c17a67-5266-7550-5308-71c954cffe9a.htm" />
<HelpKINode Title="Peachpie.Blazor.SessionLifetime enumeration" Url="html/d9bcf6b3-70db-a223-36c1-e5ea09bba9b0.htm" />
<HelpKINode Title="Peachpie.Blazor.Tag class" Url="html/2471856b-fbf3-97be-3aaa-4cc327f41d14.htm" />
<HelpKINode Title="Peachpie.Blazor.Text class" Url="html/092ad1c7-13d8-d06c-1bf9-38e7619c25b9.htm" />
<HelpKINode Title="Peachpie.Blazor.Timer class" Url="html/d73c6260-9acd-fbe5-3eb6-cf9b00997d1c.htm" />
<HelpKINode Title="Peachpie.Blazor.WebAssemblyHostBuilderExtensions class" Url="html/b0836608-02a7-f98f-003d-8e6e369bf253.htm" />
<HelpKINode Title="Persistant enumeration member" Url="html/d9bcf6b3-70db-a223-36c1-e5ea09bba9b0.htm" />
<HelpKINode Title="PhpComponent class">
<HelpKINode Title="PhpComponent Class" Url="html/e15bf912-0b3c-c0fb-c103-90fdfa4cf141.htm" />
<HelpKINode Title="constructor" Url="html/0a443cf6-617e-29b8-edc5-3729b50eca69.htm" />
<HelpKINode Title="fields" Url="html/ab0cf164-c511-a11f-c881-3136dacefbb0.htm" />
<HelpKINode Title="methods" Url="html/ed704624-8be1-6341-ffea-dde4d1881e3d.htm" />
<HelpKINode Title="properties" Url="html/bb75abab-d1f2-6019-3c35-e96955a3e7f8.htm" />
</HelpKINode>
<HelpKINode Title="PhpComponent.BuildRenderTree method" Url="html/dade2ef9-f791-012d-1806-34b357400ed2.htm" />
<HelpKINode Title="PhpComponent.Ctx property" Url="html/51b6c3f3-cdc0-cc83-58d7-1344fae510a8.htm" />
<HelpKINode Title="PhpComponent.Dispose method" Url="html/9726d576-92d1-0a7c-d6e3-6d2034961bf7.htm" />
<HelpKINode Title="PhpComponent.Js property" Url="html/b42ec10e-a092-d31b-9a85-9ea2384af6a7.htm" />
<HelpKINode Title="PhpComponent.LoggerFactory property" Url="html/da173979-cf93-24fc-8314-81a74f8486d3.htm" />
<HelpKINode Title="PhpComponent.OnInitialized method" Url="html/a00fa146-f542-23f8-788a-e55f631a10c8.htm" />
<HelpKINode Title="PhpComponent.PhpComponent constructor" Url="html/0a443cf6-617e-29b8-edc5-3729b50eca69.htm" />
<HelpKINode Title="PhpComponent.PhpService property" Url="html/f4841cdc-1907-fb37-1b48-cf31e7240d02.htm" />
<HelpKINode Title="PhpComponent._ctx field" Url="html/a294004c-71fe-9529-c4db-98a609e8dd49.htm" />
<HelpKINode Title="PhpComponentRouteManager class">
<HelpKINode Title="PhpComponentRouteManager Class" Url="html/245596c8-b440-599b-c2b0-55475aee0d46.htm" />
<HelpKINode Title="constructor" Url="html/9031ba19-497e-3668-d854-72068cce37ea.htm" />
<HelpKINode Title="methods" Url="html/ba8daacd-d8c4-9a31-b2ba-4ea6cfa11a9a.htm" />
<HelpKINode Title="properties" Url="html/68268f8d-d77f-8caa-ec32-3e4e6a295f11.htm" />
</HelpKINode>
<HelpKINode Title="PhpComponentRouteManager.Match method" Url="html/9f31f24e-17f1-d778-315f-adb719f6c9ff.htm" />
<HelpKINode Title="PhpComponentRouteManager.PhpComponentRouteManager constructor" Url="html/9031ba19-497e-3668-d854-72068cce37ea.htm" />
<HelpKINode Title="PhpComponentRouteManager.Routes property" Url="html/6daf62a6-dd54-8201-0a9d-a1b4cd9143dd.htm" />
<HelpKINode Title="PHPModule class">
<HelpKINode Title="PHPModule Class" Url="html/a74b72ff-6967-c8f8-98f4-652fc5adedf5.htm" />
<HelpKINode Title="constructor" Url="html/d53534e0-02f3-f131-dafe-80e95315909a.htm" />
<HelpKINode Title="fields" Url="html/8cd0d91f-8b91-d8f4-21df-aa103c6a95f1.htm" />
<HelpKINode Title="methods" Url="html/506fc075-68cc-8b3f-fbe2-3a7e9ca6dd88.htm" />
</HelpKINode>
<HelpKINode Title="PHPModule.CreateAsync method" Url="html/a9396a4a-7364-b1b9-62ff-43f7e8311f09.htm" />
<HelpKINode Title="PHPModule.CreateFile method" Url="html/30c7c8b5-3f33-2e5d-1eab-f693dad5f62a.htm" />
<HelpKINode Title="PHPModule.CreateUrlObject method" Url="html/8ed4ccfd-d0ae-490a-8dec-709521cbbb60.htm" />
<HelpKINode Title="PHPModule.Dispose method" Url="html/f818cd9c-04af-c45a-21c3-1fc983b01292.htm" />
<HelpKINode Title="PHPModule.DownloadFile method" Url="html/1cafae73-5609-05b1-8730-83861aa0a18e.htm" />
<HelpKINode Title="PHPModule.GetFiles method" Url="html/2b222150-0b84-7b10-a1a1-f3b9adcc2a18.htm" />
<HelpKINode Title="PHPModule.GetPostData method" Url="html/10e3ccba-4c33-6a60-cece-d80d7d1862c6.htm" />
<HelpKINode Title="PHPModule.Initialize method" Url="html/253afe8e-1bf1-d10e-22be-b4fb66654866.htm" />
<HelpKINode Title="PHPModule.isFilesPresented method" Url="html/0d984cd5-43d8-b5a9-a660-81e4aa3e4166.htm" />
<HelpKINode Title="PHPModule.IsPostRequest method" Url="html/6c920949-977b-7dc2-a792-ea60e0a7ba42.htm" />
<HelpKINode Title="PHPModule.PHPModule constructor" Url="html/d53534e0-02f3-f131-dafe-80e95315909a.htm" />
<HelpKINode Title="PHPModule.ReadFileContentAsBase64 method" Url="html/2fed6888-a13f-c79f-05ab-22d17a6024c2.htm" />
<HelpKINode Title="PHPModule.SetPHPContext method" Url="html/04aa24ea-386e-5456-91ca-6c9896b7e3ec.htm" />
<HelpKINode Title="PHPModule.TurnFormsToClientSide method" Url="html/fb381a72-ca6a-088c-4f79-3bee27fd5ddc.htm" />
<HelpKINode Title="PHPModule._changeFormsCommand field" Url="html/26367fe3-39d5-e07d-cb72-70b0279fe63c.htm" />
<HelpKINode Title="PHPModule._createFileCommand field" Url="html/47fa62db-0056-b3a4-5cb1-d7df231119ab.htm" />
<HelpKINode Title="PHPModule._createUrlObjectCommand field" Url="html/94c56153-a59f-f593-87f8-d33a0d30cc41.htm" />
<HelpKINode Title="PHPModule._ctxRef field" Url="html/df6e6ecc-d65d-f7ed-63d0-eb59bdfd1d86.htm" />
<HelpKINode Title="PHPModule._downloadFileCommand field" Url="html/8e549987-7f46-efe2-9686-6784387eddd5.htm" />
<HelpKINode Title="PHPModule._getfilesCommand field" Url="html/8e78bde9-e9b8-a11b-7fd8-33844732c064.htm" />
<HelpKINode Title="PHPModule._getPostDataCommand field" Url="html/0ec35144-d9b5-4de0-6273-131402bd6d51.htm" />
<HelpKINode Title="PHPModule._importCommand field" Url="html/4003ddca-4d66-8230-71e4-65837ce437ed.htm" />
<HelpKINode Title="PHPModule._initializeCommand field" Url="html/25b365f9-c4a1-77a4-f799-5b471a4a9c8e.htm" />
<HelpKINode Title="PHPModule._initialized field" Url="html/e59d7c39-1e2a-a9ed-9fbf-a72ae331e287.htm" />
<HelpKINode Title="PHPModule._isFilesPresentedCommand field" Url="html/eed5b1c6-f7e1-b364-b889-12cd0dd27aff.htm" />
<HelpKINode Title="PHPModule._isPostRequestedCommand field" Url="html/87eba475-4797-bb54-9496-6d17632009bc.htm" />
<HelpKINode Title="PHPModule._modulePath field" Url="html/1c7fc729-2a1a-10a9-07ca-366d56264a2a.htm" />
<HelpKINode Title="PHPModule._moduleRef field" Url="html/54314b7d-78c4-dd2a-1aae-b69879c26571.htm" />
<HelpKINode Title="PHPModule._readAsBase64Command field" Url="html/7f6aa096-b7d8-b99e-7080-5b9e1c18b57b.htm" />
<HelpKINode Title="PHPModule._setPHPContextCommand field" Url="html/cdb9f701-b0c3-be6b-face-0a2e3c2cda3c.htm" />
<HelpKINode Title="PhpScriptProvider class">
<HelpKINode Title="PhpScriptProvider Class" Url="html/0ecbfd85-ef5b-4754-23cb-49d3d074cf18.htm" />
<HelpKINode Title="constructor" Url="html/5e1fc03d-d893-02f5-98e6-6b4b6e8fb5fd.htm" />
<HelpKINode Title="fields" Url="html/19bff2b1-2ea7-c948-0047-7c31ff25da2a.htm" />
<HelpKINode Title="methods" Url="html/e39f484d-70cb-9dce-23dc-026ff631bf2d.htm" />
<HelpKINode Title="properties" Url="html/e9d23803-74ad-2ba8-cb4e-a7f125b60237.htm" />
</HelpKINode>
<HelpKINode Title="PhpScriptProvider.ContextLifetime property" Url="html/c8dc7ddd-24b5-df5a-d427-5063e3101c90.htm" />
<HelpKINode Title="PhpScriptProvider.IComponent.Attach explicitly implemented method" Url="html/fba2f54a-afb2-a1e1-5f31-adc12d270e82.htm" />
<HelpKINode Title="PhpScriptProvider.IComponent.SetParametersAsync explicitly implemented method" Url="html/d058d380-2b2d-eee4-97cd-521499a9c5a4.htm" />
<HelpKINode Title="PhpScriptProvider.IDisposable.Dispose explicitly implemented method" Url="html/0e3cc136-0087-5358-ef3b-803ac0c6a36b.htm" />
<HelpKINode Title="PhpScriptProvider.IHandleAfterRender.OnAfterRenderAsync explicitly implemented method" Url="html/79748d07-8c3b-3116-ee0f-060fa3a02819.htm" />
<HelpKINode Title="PhpScriptProvider.Js property" Url="html/10edfd9f-6e23-1e07-6677-96d56acff1d2.htm" />
<HelpKINode Title="PhpScriptProvider.LoggerFactory property" Url="html/9e38772b-4114-7d5c-dc6f-0bd2780e13ed.htm" />
<HelpKINode Title="PhpScriptProvider.Navigating property" Url="html/b4575e86-bc5d-8040-0c72-6c49ccf82bdc.htm" />
<HelpKINode Title="PhpScriptProvider.NavigationInterception property" Url="html/19099e7e-7cce-80be-e856-51fbf71e5fff.htm" />
<HelpKINode Title="PhpScriptProvider.NavigationManager property" Url="html/93d9d0a0-aaa2-447d-c401-4dfd3bf9373c.htm" />
<HelpKINode Title="PhpScriptProvider.NotFound property" Url="html/8218a6b8-e93c-12b2-ee6a-971809572c30.htm" />
<HelpKINode Title="PhpScriptProvider.OnLocationChanged method" Url="html/97c9e448-816e-bfa7-cdf1-bcd70ffd5c0e.htm" />
<HelpKINode Title="PhpScriptProvider.PhpScriptProvider constructor" Url="html/5e1fc03d-d893-02f5-98e6-6b4b6e8fb5fd.htm" />
<HelpKINode Title="PhpScriptProvider.PhpService property" Url="html/fde5c23b-23c0-9b29-0158-4bf222c23780.htm" />
<HelpKINode Title="PhpScriptProvider.Refresh method" Url="html/036b8058-6e70-ae0c-a0a4-2699b55c53f7.htm" />
<HelpKINode Title="PhpScriptProvider.Render method" Url="html/519a643a-9331-bf6c-db20-da011bb57495.htm" />
<HelpKINode Title="PhpScriptProvider.RouteManager property" Url="html/e11299cb-e3fa-4ba6-a88a-e78ec9a7b957.htm" />
<HelpKINode Title="PhpScriptProvider.ScriptName property" Url="html/2f64b2f8-f84c-0444-5e76-70be2914a2e2.htm" />
<HelpKINode Title="PhpScriptProvider.Type property" Url="html/29b6ed0a-8da0-ed9c-9176-7c3a54a35692.htm" />
<HelpKINode Title="PhpScriptProvider._ctx field" Url="html/1ddd5d37-b0da-0ac0-d3b1-df972b06e205.htm" />
<HelpKINode Title="PhpScriptProvider._disposed field" Url="html/d7454168-5cfb-dada-8067-9fc7d2068160.htm" />
<HelpKINode Title="PhpScriptProvider._firstRendering field" Url="html/c0608b67-2d8d-a7b7-8712-db752bd3e81c.htm" />
<HelpKINode Title="PhpScriptProvider._logger field" Url="html/d2d47a06-4c74-2e89-0354-761cbb6d1ec6.htm" />
<HelpKINode Title="PhpScriptProvider._module field" Url="html/02139eb8-2e11-a491-fd16-4f922636ebed.htm" />
<HelpKINode Title="PhpScriptProvider._navigationInterceptionEnabled field" Url="html/dae4c2a0-6093-b13d-c21e-03e4e655a5f9.htm" />
<HelpKINode Title="PhpScriptProvider._renderHandle field" Url="html/64965fc9-5029-36a0-5a01-eba274a37ae2.htm" />
<HelpKINode Title="PhpScriptProviderType enumeration" Url="html/b3d7777d-886f-4559-5f43-1e86eff3a250.htm" />
<HelpKINode Title="PHPService class">
<HelpKINode Title="PHPService Class" Url="html/5964ee52-bd5a-8336-7883-4218afa3af7c.htm" />
<HelpKINode Title="constructor" Url="html/b31f253d-ae0c-6411-ac6f-bca8f2f8515f.htm" />
<HelpKINode Title="fields" Url="html/5350ae04-f8bb-7258-a036-61a975f79ce8.htm" />
<HelpKINode Title="methods" Url="html/b4bbe754-20e3-51d5-1ec3-464cb0f346ed.htm" />
</HelpKINode>
<HelpKINode Title="PhpService property">
<HelpKINode Title="PhpComponent.PhpService Property " Url="html/f4841cdc-1907-fb37-1b48-cf31e7240d02.htm" />
<HelpKINode Title="PhpScriptProvider.PhpService Property " Url="html/fde5c23b-23c0-9b29-0158-4bf222c23780.htm" />
</HelpKINode>
<HelpKINode Title="PHPService.Dispose method" Url="html/b41e0842-d3d2-1e14-2c79-e0485802affe.htm" />
<HelpKINode Title="PHPService.GetModule method" Url="html/1bcf3476-6f89-4872-5e54-927004a24585.htm" />
<HelpKINode Title="PHPService.InitializePHPAsync method" Url="html/11482d2c-78be-4581-0ac1-a3737662061f.htm" />
<HelpKINode Title="PHPService.PHPService constructor" Url="html/b31f253d-ae0c-6411-ac6f-bca8f2f8515f.htm" />
<HelpKINode Title="PHPService._jsRuntime field" Url="html/9d956d89-1d02-0ab4-a2f5-95155d26d776.htm" />
<HelpKINode Title="PHPService._phpModule field" Url="html/1b4020b2-156c-96f9-f9be-c965bfae0744.htm" />
<HelpKINode Title="PhpTreeBuilder class">
<HelpKINode Title="PhpTreeBuilder Class" Url="html/140bc2a8-2a41-0774-5745-85190b5edcc7.htm" />
<HelpKINode Title="constructor" Url="html/557e642d-ae39-3e88-073e-296e1b22dc2c.htm" />
<HelpKINode Title="fields" Url="html/6f9ac671-7f29-7fca-0b3f-663a3cf2d62b.htm" />
<HelpKINode Title="methods" Url="html/6a26a767-7183-b614-4558-a82af37c8e88.htm" />
</HelpKINode>
<HelpKINode Title="PhpTreeBuilder.AddAttribute method" Url="html/f63abcf3-f98d-dc1e-55b5-8e60ee870e00.htm" />
<HelpKINode Title="PhpTreeBuilder.AddContent method" Url="html/5187cebe-5a4a-e21d-1819-6a3b570c8337.htm" />
<HelpKINode Title="PhpTreeBuilder.AddEventCallback method" Url="html/593d182d-92af-2e4c-6165-80daad8cda48.htm" />
<HelpKINode Title="PhpTreeBuilder.AddEventChangeCallback method" Url="html/856d23c0-c491-0ba8-8c41-801b4e52a3eb.htm" />
<HelpKINode Title="PhpTreeBuilder.AddEventClipboardCallback method" Url="html/c73cd587-bb80-baff-f282-d79c702f9f73.htm" />
<HelpKINode Title="PhpTreeBuilder.AddEventDragCallback method" Url="html/46b890bb-56c4-d7b7-8dea-cdd956f4d81f.htm" />
<HelpKINode Title="PhpTreeBuilder.AddEventErrorCallback method" Url="html/7ac5c8ed-2964-b852-c010-fb46bd2bcafb.htm" />
<HelpKINode Title="PhpTreeBuilder.AddEventEventCallback method" Url="html/e577a7f4-de3c-582a-bf8c-067034a16291.htm" />
<HelpKINode Title="PhpTreeBuilder.AddEventFocusCallback method" Url="html/ecd7396c-f40b-6a81-02b1-c48f7859e197.htm" />
<HelpKINode Title="PhpTreeBuilder.AddEventKeyboardCallback method" Url="html/4dbc0f6c-6aa5-de5f-11e6-b7d2b355acfd.htm" />
<HelpKINode Title="PhpTreeBuilder.AddEventMouseCallback method" Url="html/68908e1d-8698-9392-b879-1ec015a3ee2e.htm" />
<HelpKINode Title="PhpTreeBuilder.AddEventPointerCallback method" Url="html/49e50ac2-f7cd-14d4-32d8-327089224641.htm" />
<HelpKINode Title="PhpTreeBuilder.AddEventProgressCallback method" Url="html/4e036f58-50c8-0c0e-36e4-8f14396d16d7.htm" />
<HelpKINode Title="PhpTreeBuilder.AddEventTouchCallback method" Url="html/589aec2e-96f8-78a7-3fca-d79193677e8b.htm" />
<HelpKINode Title="PhpTreeBuilder.AddEventWheelCallback method" Url="html/96bc2529-3d75-e468-2c58-37b6fcb9af36.htm" />
<HelpKINode Title="PhpTreeBuilder.AddMarkupContent method" Url="html/35c57e99-85d7-b929-8a12-f465c8249d1d.htm" />
<HelpKINode Title="PhpTreeBuilder.Builder field" Url="html/a6663c97-e036-e481-22df-d42729b058ef.htm" />
<HelpKINode Title="PhpTreeBuilder.CloseElement method" Url="html/94829119-d430-1914-5018-1b0ec6bcfe88.htm" />
<HelpKINode Title="PhpTreeBuilder.Component field" Url="html/8ad7661f-e025-3eb4-53de-a702c1fb9882.htm" />
<HelpKINode Title="PhpTreeBuilder.OpenElement method" Url="html/afcff0b0-a46c-edb8-ca38-23b011cc9c49.htm" />
<HelpKINode Title="PhpTreeBuilder.PhpTreeBuilder constructor" Url="html/557e642d-ae39-3e88-073e-296e1b22dc2c.htm" />
<HelpKINode Title="PrintFiles method" Url="html/80fd1178-8ffc-1ce7-97a4-f258fe2831b2.htm" />
<HelpKINode Title="PrintGet method" Url="html/0b7a9d89-2554-3b54-aac2-d059f083317b.htm" />
<HelpKINode Title="PrintPost method" Url="html/f8a5c197-44e6-0a43-c0fa-01a63523bce2.htm" />
<HelpKINode Title="ReadFileContentAsBase64 method" Url="html/2fed6888-a13f-c79f-05ab-22d17a6024c2.htm" />
<HelpKINode Title="Refresh method" Url="html/036b8058-6e70-ae0c-a0a4-2699b55c53f7.htm" />
<HelpKINode Title="remove method" Url="html/6ca9dda2-a461-9a4f-5b11-c65f2ac716c9.htm" />
<HelpKINode Title="removeEvent method" Url="html/80c5fa70-c6f4-eab4-e593-cb6cb5e02b01.htm" />
<HelpKINode Title="Render method" Url="html/519a643a-9331-bf6c-db20-da011bb57495.htm" />
<HelpKINode Title="Route class">
<HelpKINode Title="Route Class" Url="html/7985ed87-9297-3b4f-34eb-6030ea112c1f.htm" />
<HelpKINode Title="constructor" Url="html/71fb33e2-8f0e-ae89-96e6-f99cd625c25b.htm" />
<HelpKINode Title="fields" Url="html/a05f4712-a60f-32ce-bacd-699c6d2afba3.htm" />
<HelpKINode Title="methods" Url="html/a0015af5-3868-6188-9096-124f8311bdfd.htm" />
</HelpKINode>
<HelpKINode Title="Route.Handler field" Url="html/2a8157a9-ba24-df7d-92f4-d2961e1a7f47.htm" />
<HelpKINode Title="Route.Match method" Url="html/f72f2e3e-5025-46cc-1627-f367f1538ca6.htm" />
<HelpKINode Title="Route.Route constructor" Url="html/71fb33e2-8f0e-ae89-96e6-f99cd625c25b.htm" />
<HelpKINode Title="Route.UriSegments field" Url="html/50128348-4b4b-94b3-6faa-d9f85e4224e6.htm" />
<HelpKINode Title="RouteData structure">
<HelpKINode Title="RouteData Structure" Url="html/652784b2-3ee6-fda9-855f-5698c5db0dba.htm" />
<HelpKINode Title="constructor" Url="html/e0a368fb-5bb9-c249-bf4e-186b93bbd102.htm" />
<HelpKINode Title="properties" Url="html/3044da29-5bcc-7c49-b6f6-590811057fbd.htm" />
</HelpKINode>
<HelpKINode Title="RouteData.Handler property" Url="html/1de22cd6-2a2c-1b18-08e1-334bb6e3ebbe.htm" />
<HelpKINode Title="RouteData.Parameters property" Url="html/8eb226e0-3cba-42a2-7fd4-541350c64184.htm" />
<HelpKINode Title="RouteData.RouteData constructor" Url="html/e0a368fb-5bb9-c249-bf4e-186b93bbd102.htm" />
<HelpKINode Title="RouteManager property" Url="html/e11299cb-e3fa-4ba6-a88a-e78ec9a7b957.htm" />
<HelpKINode Title="Router enumeration member" Url="html/b3d7777d-886f-4559-5f43-1e86eff3a250.htm" />
<HelpKINode Title="Routes property" Url="html/6daf62a6-dd54-8201-0a9d-a1b4cd9143dd.htm" />
<HelpKINode Title="Script enumeration member" Url="html/b3d7777d-886f-4559-5f43-1e86eff3a250.htm" />
<HelpKINode Title="ScriptInfoExtensions class">
<HelpKINode Title="ScriptInfoExtensions Class" Url="html/50c17a67-5266-7550-5308-71c954cffe9a.htm" />
<HelpKINode Title="methods" Url="html/3274fa1d-779c-ba9b-d1e2-e5b6bf5d9ce2.htm" />
</HelpKINode>
<HelpKINode Title="ScriptInfoExtensions.Evaluate method" Url="html/affe45a4-95e9-6a7c-b0f1-d24b185a07f7.htm" />
<HelpKINode Title="ScriptName property" Url="html/2f64b2f8-f84c-0444-5e76-70be2914a2e2.htm" />
<HelpKINode Title="ScriptNavigation method" Url="html/3d7cc1a4-88ea-1514-f6c1-a9e3abeee923.htm" />
<HelpKINode Title="ScriptProvider enumeration member" Url="html/b3d7777d-886f-4559-5f43-1e86eff3a250.htm" />
<HelpKINode Title="SessionLifetime enumeration" Url="html/d9bcf6b3-70db-a223-36c1-e5ea09bba9b0.htm" />
<HelpKINode Title="SetFilesAsync method" Url="html/2a1eadda-145f-974b-1a1b-6b2b24e89cc6.htm" />
<HelpKINode Title="SetGet method" Url="html/e201fc4a-3e2d-e1a0-d342-94045c46a716.htm" />
<HelpKINode Title="SetParameters method" Url="html/c182d9c1-0966-7640-bed1-1e13969010f1.htm" />
<HelpKINode Title="SetPHPContext method" Url="html/04aa24ea-386e-5456-91ca-6c9896b7e3ec.htm" />
<HelpKINode Title="SetPost method" Url="html/935f5b0d-6b4b-92a3-8f42-59152e809a3e.htm" />
<HelpKINode Title="size property" Url="html/1858c8d4-73bc-648f-5fb0-f338e0809c2b.htm" />
<HelpKINode Title="Start method" Url="html/065e8756-55a5-81bc-50cd-d75f783a8ebb.htm" />
<HelpKINode Title="StartRender method" Url="html/03f9c18d-9c28-eb43-14d6-cf82a9d32dd2.htm" />
<HelpKINode Title="Stop method" Url="html/09e69163-0a90-1b95-28a5-887e903d3650.htm" />
<HelpKINode Title="StopRender method" Url="html/e4cdb947-cbfa-9ad5-bd6a-2e3886fabf0e.htm" />
<HelpKINode Title="String to Text conversion" Url="html/c6dc951b-b683-0027-7f50-39370fde839f.htm" />
<HelpKINode Title="styles field" Url="html/50fef3d0-7d02-7c65-c470-758f65ef622d.htm" />
<HelpKINode Title="Tag class">
<HelpKINode Title="Tag Class" Url="html/2471856b-fbf3-97be-3aaa-4cc327f41d14.htm" />
<HelpKINode Title="constructor" Url="html/aba1090c-2871-de79-6281-2d5f244dafb1.htm" />
<HelpKINode Title="fields" Url="html/a4b4f1b1-06ba-88fe-2573-7a4cfbbf9f84.htm" />
<HelpKINode Title="methods" Url="html/ff8c40aa-d0e1-020a-f67f-fbaa261f4cae.htm" />
</HelpKINode>
<HelpKINode Title="Tag.attributes field" Url="html/38264408-0359-676e-4af7-17dcc8741c42.htm" />
<HelpKINode Title="Tag.content field" Url="html/692fa9d4-bfff-7d1d-70a8-a775d5d15a84.htm" />
<HelpKINode Title="Tag.name field" Url="html/cce9ba27-4334-eb49-322e-21a0c2e38a46.htm" />
<HelpKINode Title="Tag.Tag constructor" Url="html/aba1090c-2871-de79-6281-2d5f244dafb1.htm" />
<HelpKINode Title="Tag.ToString method" Url="html/9f5cbf3f-4f23-48b2-a43f-8d81a36f6275.htm" />
<HelpKINode Title="Tag.writeWithTreeBuilder method" Url="html/5f1331c5-6a00-881b-5ba9-bd628fd3351d.htm" />
<HelpKINode Title="Tag.__construct method" Url="html/122d2bd2-fa24-0d84-b748-9e3a70300525.htm" />
<HelpKINode Title="Text class">
<HelpKINode Title="Text Class" Url="html/092ad1c7-13d8-d06c-1bf9-38e7619c25b9.htm" />
<HelpKINode Title="constructor" Url="html/30902537-cd20-13b8-f3fd-2f33a439c663.htm" />
<HelpKINode Title="fields" Url="html/b255bd01-9801-62f5-f5e6-aadcf9ec6910.htm" />
<HelpKINode Title="methods" Url="html/f6108709-6262-f227-a568-803e27046cdc.htm" />
<HelpKINode Title="type conversions" Url="html/5f9745ce-c393-1731-d83e-3b136f98718c.htm" />
</HelpKINode>
<HelpKINode Title="Text to String conversion" Url="html/127defa0-5774-d179-bda6-36c4e1c35cb4.htm" />
<HelpKINode Title="Text.content field" Url="html/ed33d8c4-fa92-4310-4f8e-496afacbc5ab.htm" />
<HelpKINode Title="Text.Text constructor" Url="html/30902537-cd20-13b8-f3fd-2f33a439c663.htm" />
<HelpKINode Title="Text.ToString method" Url="html/2029bd22-d782-3c53-0934-8c4b6a1cd7ca.htm" />
<HelpKINode Title="Text.writeWithTreeBuilder method" Url="html/17ffcd8a-a0f4-3280-2754-90781a9209b2.htm" />
<HelpKINode Title="Timer class">
<HelpKINode Title="Timer Class" Url="html/d73c6260-9acd-fbe5-3eb6-cf9b00997d1c.htm" />
<HelpKINode Title="constructor" Url="html/f131f989-9423-e968-71d2-cfa2eb577995.htm" />
<HelpKINode Title="fields" Url="html/e32e201d-4ac0-13b5-c9d3-137b169466be.htm" />
<HelpKINode Title="methods" Url="html/05f3c56d-d366-6948-42fd-1f4798d5c708.htm" />
</HelpKINode>
<HelpKINode Title="timer field" Url="html/5dd2f252-8a51-0a91-4623-653f127d7e6e.htm" />
<HelpKINode Title="Timer.addEventElapsed method" Url="html/c0f04228-0e4c-19fb-17bd-34b4aab80dfe.htm" />
<HelpKINode Title="Timer.AutoReset method" Url="html/d9703d10-dd5c-dcab-41a5-4234fccbe53b.htm" />
<HelpKINode Title="Timer.Dispose method" Url="html/abc5b41e-2592-6027-801d-9cf0ca35dd9a.htm" />
<HelpKINode Title="Timer.Start method" Url="html/065e8756-55a5-81bc-50cd-d75f783a8ebb.htm" />
<HelpKINode Title="Timer.Stop method" Url="html/09e69163-0a90-1b95-28a5-887e903d3650.htm" />
<HelpKINode Title="Timer.Timer constructor" Url="html/f131f989-9423-e968-71d2-cfa2eb577995.htm" />
<HelpKINode Title="Timer.timer field" Url="html/5dd2f252-8a51-0a91-4623-653f127d7e6e.htm" />
<HelpKINode Title="ToString method">
<HelpKINode Title="AttributeCollection.ToString Method " Url="html/779e74f4-3f8f-9e29-7353-930fc4e268bd.htm" />
<HelpKINode Title="ClassBuilder.ToString Method " Url="html/a02b1924-f32a-3e34-8d89-81ade3da9eb3.htm" />
<HelpKINode Title="CssBuilder.ToString Method " Url="html/419f781c-2876-9fe2-b3bd-8f68a49316eb.htm" />
<HelpKINode Title="Tag.ToString Method " Url="html/9f5cbf3f-4f23-48b2-a43f-8d81a36f6275.htm" />
<HelpKINode Title="Text.ToString Method " Url="html/2029bd22-d782-3c53-0934-8c4b6a1cd7ca.htm" />
</HelpKINode>
<HelpKINode Title="turnFormsToClient field" Url="html/4f806006-bb03-1aa9-dd6e-e7c7a9796331.htm" />
<HelpKINode Title="TurnFormsToClientSide method" Url="html/fb381a72-ca6a-088c-4f79-3bee27fd5ddc.htm" />
<HelpKINode Title="Type property" Url="html/29b6ed0a-8da0-ed9c-9176-7c3a54a35692.htm" />
<HelpKINode Title="type property" Url="html/cdb5c859-4ac2-ea5d-f19d-35108008fe2c.htm" />
<HelpKINode Title="UriSegments field" Url="html/50128348-4b4b-94b3-6faa-d9f85e4224e6.htm" />
<HelpKINode Title="UseAdditionalWebStaticAssets method" Url="html/6ca8189b-2ae0-ff5f-a5a3-721329d993bd.htm" />
<HelpKINode Title="WebAssemblyHostBuilderExtensions class">
<HelpKINode Title="WebAssemblyHostBuilderExtensions Class" Url="html/b0836608-02a7-f98f-003d-8e6e369bf253.htm" />
<HelpKINode Title="methods" Url="html/1185c53f-a455-fad9-62df-97a649556271.htm" />
</HelpKINode>
<HelpKINode Title="WebAssemblyHostBuilderExtensions.AddPhp method" Url="html/22bcbb7c-89fc-2926-d156-adcc02ffe172.htm" />
<HelpKINode Title="Write method" Url="html/a57e80fe-1a1e-de1f-83ca-45805ddbd808.htm" />
<HelpKINode Title="writeWithTreeBuilder method">
<HelpKINode Title="AttributeCollection.writeWithTreeBuilder Method " Url="html/a1573d75-da6f-9035-a37d-24ba5aede43a.htm" />
<HelpKINode Title="BlazorWritable.writeWithTreeBuilder Method " Url="html/3abd2f9b-2000-a04b-a9b0-aeab05f0be2c.htm" />
<HelpKINode Title="Tag.writeWithTreeBuilder Method " Url="html/5f1331c5-6a00-881b-5ba9-bd628fd3351d.htm" />
<HelpKINode Title="Text.writeWithTreeBuilder Method " Url="html/17ffcd8a-a0f4-3280-2754-90781a9209b2.htm" />
</HelpKINode>
<HelpKINode Title="_attach field" Url="html/54a4370d-9dcb-264f-1c1c-b7341206c46b.htm" />
<HelpKINode Title="_buffer field" Url="html/f05cf8e0-918e-1411-7db1-590f74248d5e.htm" />
<HelpKINode Title="_builder field" Url="html/fc0322d4-8dfd-27b3-6a41-0b0d4753c830.htm" />
<HelpKINode Title="_busyNavigating field" Url="html/38d55766-3c59-0193-0152-eb4621e7a20a.htm" />
<HelpKINode Title="_changeFormsCommand field" Url="html/26367fe3-39d5-e07d-cb72-70b0279fe63c.htm" />
<HelpKINode Title="_classes field" Url="html/aa80dab1-1dfd-061c-021d-a5d9d2b053f1.htm" />
<HelpKINode Title="_createFileCommand field" Url="html/47fa62db-0056-b3a4-5cb1-d7df231119ab.htm" />
<HelpKINode Title="_createUrlObjectCommand field" Url="html/94c56153-a59f-f593-87f8-d33a0d30cc41.htm" />
<HelpKINode Title="_ctx field">
<HelpKINode Title="PhpComponent._ctx Field" Url="html/a294004c-71fe-9529-c4db-98a609e8dd49.htm" />
<HelpKINode Title="PhpScriptProvider._ctx Field" Url="html/1ddd5d37-b0da-0ac0-d3b1-df972b06e205.htm" />
</HelpKINode>
<HelpKINode Title="_ctxRef field" Url="html/df6e6ecc-d65d-f7ed-63d0-eb59bdfd1d86.htm" />
<HelpKINode Title="_dictionary field" Url="html/b727f608-7ddf-cd4c-6271-1cb5b2793cdb.htm" />
<HelpKINode Title="_dispose field" Url="html/be376c4d-6867-bd1f-64cc-b51dc220dcc5.htm" />
<HelpKINode Title="_disposed field" Url="html/d7454168-5cfb-dada-8067-9fc7d2068160.htm" />
<HelpKINode Title="_download field" Url="html/4b5af283-46a0-24cc-0390-78aab1d231b7.htm" />
<HelpKINode Title="_downloaded field" Url="html/fac35f0a-1e4f-4de0-938e-63ff5f7a09df.htm" />
<HelpKINode Title="_downloadFileCommand field" Url="html/8e549987-7f46-efe2-9686-6784387eddd5.htm" />
<HelpKINode Title="_fetched field" Url="html/84ea8c0d-e381-e647-8598-771423833d01.htm" />
<HelpKINode Title="_fileManager field" Url="html/f502c27c-a550-f883-b34e-412a1c6cc4e8.htm" />
<HelpKINode Title="_firstRendering field" Url="html/c0608b67-2d8d-a7b7-8712-db752bd3e81c.htm" />
<HelpKINode Title="_getfilesCommand field" Url="html/8e78bde9-e9b8-a11b-7fd8-33844732c064.htm" />
<HelpKINode Title="_getPostDataCommand field" Url="html/0ec35144-d9b5-4de0-6273-131402bd6d51.htm" />
<HelpKINode Title="_importCommand field" Url="html/4003ddca-4d66-8230-71e4-65837ce437ed.htm" />
<HelpKINode Title="_initializeCommand field" Url="html/25b365f9-c4a1-77a4-f799-5b471a4a9c8e.htm" />
<HelpKINode Title="_initialized field" Url="html/e59d7c39-1e2a-a9ed-9fbf-a72ae331e287.htm" />
<HelpKINode Title="_isFilesPresentedCommand field" Url="html/eed5b1c6-f7e1-b364-b889-12cd0dd27aff.htm" />
<HelpKINode Title="_isPostRequestedCommand field" Url="html/87eba475-4797-bb54-9496-6d17632009bc.htm" />
<HelpKINode Title="_js field" Url="html/ecec0be0-43c1-040f-38d3-453f8e5c69b1.htm" />
<HelpKINode Title="_jsRuntime field" Url="html/9d956d89-1d02-0ab4-a2f5-95155d26d776.htm" />
<HelpKINode Title="_logger field">
<HelpKINode Title="BlazorContext._logger Field" Url="html/962c129f-1334-e2e2-bff7-ca0b60c74dff.htm" />
<HelpKINode Title="FileManager._logger Field" Url="html/708ff355-0d79-6233-ae9f-9fdd86f1a135.htm" />
<HelpKINode Title="PhpScriptProvider._logger Field" Url="html/d2d47a06-4c74-2e89-0354-761cbb6d1ec6.htm" />
</HelpKINode>
<HelpKINode Title="_module field">
<HelpKINode Title="BlazorContext._module Field" Url="html/b3a49a7c-ed74-2aa9-6062-61a62f047245.htm" />
<HelpKINode Title="FileManager._module Field" Url="html/99f86a56-af48-85c2-6c2e-d1c8c82d142f.htm" />
<HelpKINode Title="PhpScriptProvider._module Field" Url="html/02139eb8-2e11-a491-fd16-4f922636ebed.htm" />
</HelpKINode>
<HelpKINode Title="_modulePath field" Url="html/1c7fc729-2a1a-10a9-07ca-366d56264a2a.htm" />
<HelpKINode Title="_moduleRef field" Url="html/54314b7d-78c4-dd2a-1aae-b69879c26571.htm" />
<HelpKINode Title="_navigating field" Url="html/c4ce3593-08cf-388e-2a56-30bb490f9d04.htm" />
<HelpKINode Title="_navigatingComponent field" Url="html/0e88e65d-50c6-8e22-69b4-086bbe99425b.htm" />
<HelpKINode Title="_navigatingFailed field" Url="html/2683017e-0836-bf45-c2ea-0372a36a741d.htm" />
<HelpKINode Title="_navigatingScript field" Url="html/daaece18-3453-518e-55b3-4ea02f760695.htm" />
<HelpKINode Title="_navigationInterceptionEnabled field" Url="html/dae4c2a0-6093-b13d-c21e-03e4e655a5f9.htm" />
<HelpKINode Title="_phpModule field" Url="html/1b4020b2-156c-96f9-f9be-c965bfae0744.htm" />
<HelpKINode Title="_readAsBase64Command field" Url="html/7f6aa096-b7d8-b99e-7080-5b9e1c18b57b.htm" />
<HelpKINode Title="_renderHandle field" Url="html/64965fc9-5029-36a0-5a01-eba274a37ae2.htm" />
<HelpKINode Title="_setParameters field" Url="html/3b9f0bb1-998f-3480-f204-08968566b824.htm" />
<HelpKINode Title="_setPHPContextCommand field" Url="html/cdb9f701-b0c3-be6b-face-0a2e3c2cda3c.htm" />
<HelpKINode Title="_styles field" Url="html/de65b2cf-5c02-ace2-8301-0fa0c6c0b989.htm" />
<HelpKINode Title="__construct method" Url="html/122d2bd2-fa24-0d84-b748-9e3a70300525.htm" />
</HelpKI>

Просмотреть файл

@ -1,430 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<HelpTOC>
<HelpTOCNode Id="70493942-b004-415d-afd5-7bf3febe9ec0" Title="Peachpie.Blazor" Url="html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">
<HelpTOCNode Id="4e09521a-5b8c-465e-a695-36a37187936d" Title="AttributeCollection Class" Url="html/7a06a6b6-3152-2bc7-ee97-fa6c3e08dde9.htm">
<HelpTOCNode Title="AttributeCollection Constructor " Url="html/6bbc3805-485a-657e-acad-dc407e9987e7.htm" />
<HelpTOCNode Id="f4feeb1a-17a2-440c-973b-ea18120c4ad2" Title="AttributeCollection Methods" Url="html/0f5f12af-b64c-2989-edf9-61850f480d2c.htm">
<HelpTOCNode Title="addEvent Method " Url="html/0660deb6-8e53-1a13-c146-6a62dedb3dc1.htm" />
<HelpTOCNode Title="offsetExists Method " Url="html/29c4f1d6-7242-84ba-5ef3-f6b88d65b818.htm" />
<HelpTOCNode Title="offsetGet Method " Url="html/ebf23910-6fcc-3ae4-453c-e7473885cd72.htm" />
<HelpTOCNode Title="offsetSet Method " Url="html/052636ce-42df-ae89-1801-9bd237a5ced0.htm" />
<HelpTOCNode Title="offsetUnset Method " Url="html/7a050771-2bee-1149-3313-440f826f96a1.htm" />
<HelpTOCNode Title="removeEvent Method " Url="html/80c5fa70-c6f4-eab4-e593-cb6cb5e02b01.htm" />
<HelpTOCNode Title="ToString Method " Url="html/779e74f4-3f8f-9e29-7353-930fc4e268bd.htm" />
<HelpTOCNode Title="writeWithTreeBuilder Method " Url="html/a1573d75-da6f-9035-a37d-24ba5aede43a.htm" />
</HelpTOCNode>
<HelpTOCNode Id="481fcf2d-f5b9-4c1a-a64c-28376333a889" Title="AttributeCollection Fields" Url="html/e5c8e03d-ba24-1925-bc27-8ae5e0fab246.htm">
<HelpTOCNode Title="attributes Field" Url="html/6964c99d-af93-fff0-05c9-bc2873712433.htm" />
<HelpTOCNode Title="classes Field" Url="html/36890f6b-528d-0dae-4575-777ffb9fa371.htm" />
<HelpTOCNode Title="events Field" Url="html/d31a151d-4c97-b8c5-9148-6aa8ec8883e9.htm" />
<HelpTOCNode Title="styles Field" Url="html/50fef3d0-7d02-7c65-c470-758f65ef622d.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="0502070b-3db9-4150-a783-6f25e4c912ac" Title="BlazorContext Class" Url="html/2ef0b2e2-f49f-3564-28c3-f1d42929ff45.htm">
<HelpTOCNode Title="BlazorContext Constructor " Url="html/d2dfd58c-db4d-72d3-baac-6a7c5be8158d.htm" />
<HelpTOCNode Id="aa1a532e-eca3-49cd-94c6-553e68493ed5" Title="BlazorContext Methods" Url="html/d4622821-c8c1-c91b-ad2e-41a3fcf8d814.htm">
<HelpTOCNode Title="CallJs(TResult) Method " Url="html/7ceacaee-4141-0fde-e9bd-3da938fe7ed4.htm" />
<HelpTOCNode Title="CallJsAsync(TResult) Method " Url="html/f4dedc41-a36d-58bb-5dd9-1a2f2d8faa8f.htm" />
<HelpTOCNode Title="CallJsVoid Method " Url="html/5fcc2706-c9a6-f4af-f040-9b5b3c0f17f6.htm" />
<HelpTOCNode Title="CallJsVoidAsync Method " Url="html/8aa2d088-01e9-7263-ff8c-05dc910c04e6.htm" />
<HelpTOCNode Title="CallPHP Method " Url="html/b5f7b43d-9442-4d18-fa9a-df923fb0e2ce.htm" />
<HelpTOCNode Id="9929b45c-a0de-4d7a-99d7-721c1d75eb2d" Title="Create Method " Url="html/117fe2c6-f7d7-9412-009d-925119c4e9a2.htm">
<HelpTOCNode Title="Create Method (PhpScriptProvider)" Url="html/d6df2ef4-2be1-092f-4088-813cec9bfeaa.htm" />
<HelpTOCNode Title="Create Method (IJSRuntime, ILoggerFactory, IPHPService)" Url="html/5808c75e-53a8-3f2d-088d-332b4e7bfee9.htm" />
</HelpTOCNode>
<HelpTOCNode Title="Dispose Method " Url="html/1f7c75bf-8854-9218-f71b-afb502b45000.htm" />
<HelpTOCNode Title="GetDownloadFile Method " Url="html/362699cf-e431-ebeb-8b92-db5fce2481de.htm" />
<HelpTOCNode Title="SetFilesAsync Method " Url="html/2a1eadda-145f-974b-1a1b-6b2b24e89cc6.htm" />
<HelpTOCNode Title="SetGet Method " Url="html/e201fc4a-3e2d-e1a0-d342-94045c46a716.htm" />
<HelpTOCNode Title="SetPost Method " Url="html/935f5b0d-6b4b-92a3-8f42-59152e809a3e.htm" />
<HelpTOCNode Title="StartRender Method " Url="html/03f9c18d-9c28-eb43-14d6-cf82a9d32dd2.htm" />
<HelpTOCNode Title="StopRender Method " Url="html/e4cdb947-cbfa-9ad5-bd6a-2e3886fabf0e.htm" />
</HelpTOCNode>
<HelpTOCNode Id="176b9fcb-dac7-4f2f-854f-8adc1e9e0797" Title="BlazorContext Fields" Url="html/33ed7ace-caa8-1c94-8214-5c3daa07f6a5.htm">
<HelpTOCNode Title="_fileManager Field" Url="html/f502c27c-a550-f883-b34e-412a1c6cc4e8.htm" />
<HelpTOCNode Title="_js Field" Url="html/ecec0be0-43c1-040f-38d3-453f8e5c69b1.htm" />
<HelpTOCNode Title="_logger Field" Url="html/962c129f-1334-e2e2-bff7-ca0b60c74dff.htm" />
<HelpTOCNode Title="_module Field" Url="html/b3a49a7c-ed74-2aa9-6062-61a62f047245.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="9d6281df-58ab-4f72-8e0a-4eebe9cb76d3" Title="BlazorWritable Interface" Url="html/9c8a3a26-73fd-5c69-7965-13beecb249d8.htm">
<HelpTOCNode Id="e98c07a2-7141-46c1-aeb5-99cf2729603a" Title="BlazorWritable Methods" Url="html/6134bd0e-a2fa-5f38-2fc0-7f19c246db32.htm">
<HelpTOCNode Title="writeWithTreeBuilder Method " Url="html/3abd2f9b-2000-a04b-a9b0-aeab05f0be2c.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="02b357a0-4710-4564-a691-8e2590e723d2" Title="BlazorWriter Class" Url="html/572707d2-a315-4c73-1505-cc9736347d37.htm">
<HelpTOCNode Title="BlazorWriter Constructor " Url="html/f7f4194b-a1f7-0e08-5065-e8d58d64e162.htm" />
<HelpTOCNode Id="8c617d1b-aba8-4265-b72a-c26b409a7f28" Title="BlazorWriter Properties" Url="html/83328656-9f4c-a5fe-bbde-83b9db674581.htm">
<HelpTOCNode Title="Encoding Property " Url="html/1a4d8f07-0012-68e4-c6bc-f82508a4d1b7.htm" />
</HelpTOCNode>
<HelpTOCNode Id="f42df101-ef4f-472b-8710-e3bd176357df" Title="BlazorWriter Methods" Url="html/82c2d943-8f2f-d368-94e3-74ff12d35644.htm">
<HelpTOCNode Title="CreateConsole Method " Url="html/1840a4e9-46c2-1764-e4e7-36db19ac78e1.htm" />
<HelpTOCNode Title="CreateTree Method " Url="html/ba663614-cea6-8611-606d-5d04a6724625.htm" />
<HelpTOCNode Title="Dispose Method " Url="html/9d4a3ef9-7f85-2bfc-319e-3760e0ff6b4c.htm" />
<HelpTOCNode Title="Flush Method " Url="html/e6103205-8795-e7da-8448-b9f5e0b8d77f.htm" />
<HelpTOCNode Title="Write Method " Url="html/a57e80fe-1a1e-de1f-83ca-45805ddbd808.htm" />
</HelpTOCNode>
<HelpTOCNode Id="5353465e-875f-48b7-8ac0-d3adb8a5a4db" Title="BlazorWriter Fields" Url="html/c00a6e3d-4450-30d7-056f-340de3982eed.htm">
<HelpTOCNode Title="_buffer Field" Url="html/f05cf8e0-918e-1411-7db1-590f74248d5e.htm" />
<HelpTOCNode Title="_builder Field" Url="html/fc0322d4-8dfd-27b3-6a41-0b0d4753c830.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="bb8f2b78-aecb-4daa-887a-fba329db5260" Title="BrowserFile Class" Url="html/91e28a69-b22f-adfa-dcee-b030736cbb2d.htm">
<HelpTOCNode Title="BrowserFile Constructor " Url="html/065a6c22-88ca-f26f-a492-e53128d70d9b.htm" />
<HelpTOCNode Id="3bf93df6-0420-4325-8882-17c72aa4625b" Title="BrowserFile Properties" Url="html/0d55dcc2-bef4-ad5f-374c-535e5164301b.htm">
<HelpTOCNode Title="id Property " Url="html/8c44304e-039e-3332-9343-b0a56991c300.htm" />
<HelpTOCNode Title="name Property " Url="html/8c5bac27-8dc5-fc1d-9fb7-fa98b5a035d5.htm" />
<HelpTOCNode Title="size Property " Url="html/1858c8d4-73bc-648f-5fb0-f338e0809c2b.htm" />
<HelpTOCNode Title="type Property " Url="html/cdb5c859-4ac2-ea5d-f19d-35108008fe2c.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="8e2fca88-9e7d-48f7-84d4-5899956e6dee" Title="ClassBuilder Class" Url="html/933dcd64-4995-bab0-fea0-334fffa9001b.htm">
<HelpTOCNode Title="ClassBuilder Constructor " Url="html/e59d27c6-064e-53f4-6510-51304ceba478.htm" />
<HelpTOCNode Id="048ffcb7-5387-4d2a-889b-c68cfa62739a" Title="ClassBuilder Methods" Url="html/b894b082-ea1c-7269-d8d3-723e112fcb90.htm">
<HelpTOCNode Title="add Method " Url="html/124dd83c-3168-2488-00c7-a9dcc82a1706.htm" />
<HelpTOCNode Title="remove Method " Url="html/6ca9dda2-a461-9a4f-5b11-c65f2ac716c9.htm" />
<HelpTOCNode Title="ToString Method " Url="html/a02b1924-f32a-3e34-8d89-81ade3da9eb3.htm" />
</HelpTOCNode>
<HelpTOCNode Id="6772be21-63f9-441b-9b0d-20856c03c52d" Title="ClassBuilder Fields" Url="html/261a3181-07b8-345d-4b47-bf92efc900a4.htm">
<HelpTOCNode Title="_classes Field" Url="html/aa80dab1-1dfd-061c-021d-a5d9d2b053f1.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="572018bc-a680-4a6e-9a19-ca1008641d3d" Title="CssBuilder Class" Url="html/56d85b4a-99e4-9051-b0f6-63077014e9e2.htm">
<HelpTOCNode Title="CssBuilder Constructor " Url="html/2e2ddc39-920d-d153-3a1d-6db2d502052b.htm" />
<HelpTOCNode Id="297fd141-d3a1-411d-8946-c832b4df1c52" Title="CssBuilder Methods" Url="html/5367524f-e5ae-a66a-71ef-c0fd8dc7df2b.htm">
<HelpTOCNode Title="offsetExists Method " Url="html/96a47ee5-66a5-a969-02cd-7b2da95346df.htm" />
<HelpTOCNode Title="offsetGet Method " Url="html/f932593d-f6b9-ee35-a1fd-eeebb041824a.htm" />
<HelpTOCNode Title="offsetSet Method " Url="html/5ab68224-7893-ec65-967e-a4397f1b2124.htm" />
<HelpTOCNode Title="offsetUnset Method " Url="html/54455188-a5a4-54d7-bfaa-c4e1af5e7200.htm" />
<HelpTOCNode Title="ToString Method " Url="html/419f781c-2876-9fe2-b3bd-8f68a49316eb.htm" />
</HelpTOCNode>
<HelpTOCNode Id="86ec6101-f630-45c4-989b-f8ee0bb02242" Title="CssBuilder Fields" Url="html/eb2960e7-a34a-e021-e676-52d9e580967a.htm">
<HelpTOCNode Title="_styles Field" Url="html/de65b2cf-5c02-ace2-8301-0fa0c6c0b989.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="24855ce5-b75c-4564-ad2d-f8bf6d8b5799" Title="EventHelper Class" Url="html/3a4c3348-6ec2-1fe5-70b1-0ef0fa120305.htm">
<HelpTOCNode Id="09880e73-5ad9-4213-974e-6a28af4fcbf6" Title="EventHelper Methods" Url="html/df740326-8d81-6dfa-a811-418baaeb8da6.htm">
<HelpTOCNode Title="AddEventListener(TEventArgs) Method " Url="html/9c9acce0-4086-2b2f-e4b3-96aff96dfe43.htm" />
<HelpTOCNode Title="AddSimpleEventListener Method " Url="html/24b0b196-3fcd-39e8-da78-abcd5ed0296c.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="93259683-0df7-417e-a228-d70338e2ace3" Title="FileManager Class" Url="html/4364e3bb-0312-bc6f-0731-fd269f858f62.htm">
<HelpTOCNode Title="FileManager Constructor " Url="html/15b66901-e40b-2aed-7485-e4b1dda867c0.htm" />
<HelpTOCNode Id="0603721f-ce6f-429d-9b1d-f84a4b8750f8" Title="FileManager Methods" Url="html/08d9f02f-9814-2694-b795-2c1a104c8307.htm">
<HelpTOCNode Title="DownloadFilesAsync Method " Url="html/f951f22c-f007-a2cc-90f7-34787614300f.htm" />
<HelpTOCNode Title="FetchFiles Method " Url="html/d9c921d1-b383-1173-a007-ff7cb80bc290.htm" />
<HelpTOCNode Title="GetFileData Method " Url="html/8dca3263-9ed0-75c5-89f6-60e218b64a8e.htm" />
</HelpTOCNode>
<HelpTOCNode Id="7fb0a4f2-6d9e-485e-a1dd-f9e938d976b7" Title="FileManager Fields" Url="html/e888e216-56d4-12f1-aa83-e82fd36b765f.htm">
<HelpTOCNode Title="_downloaded Field" Url="html/fac35f0a-1e4f-4de0-938e-63ff5f7a09df.htm" />
<HelpTOCNode Title="_fetched Field" Url="html/84ea8c0d-e381-e647-8598-771423833d01.htm" />
<HelpTOCNode Title="_logger Field" Url="html/708ff355-0d79-6233-ae9f-9fdd86f1a135.htm" />
<HelpTOCNode Title="_module Field" Url="html/99f86a56-af48-85c2-6c2e-d1c8c82d142f.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="63c56c03-dfdf-48b2-a2f1-ee5f481e70f4" Title="FileUtils Class" Url="html/7a25c2af-35c1-9400-f498-16cc7758cc55.htm">
<HelpTOCNode Id="8e2c9f67-4706-456c-a772-7c6cfd135e4a" Title="FileUtils Methods" Url="html/248fc82a-7cec-dd31-dd74-865fd52094cb.htm">
<HelpTOCNode Title="CreateFile Method " Url="html/1c79d954-4f38-b599-c5fe-7f26593a2119.htm" />
<HelpTOCNode Title="CreateUrlObject Method " Url="html/0753b1d7-ec64-b3ce-c988-2d13507ab3f8.htm" />
<HelpTOCNode Title="DownloadFile Method " Url="html/b9cc0962-f6d7-762a-672c-2a2005cc7c90.htm" />
<HelpTOCNode Title="GetBrowserFileContent Method " Url="html/db66a780-26ea-ea1c-c671-d21ef77880db.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="04da7ae5-70b0-48e3-90ce-2ddf1dd7834b" Title="FormFile Class" Url="html/e6cc319f-7af9-9119-a168-9be08c4c6de8.htm">
<HelpTOCNode Title="FormFile Constructor " Url="html/df15a596-1059-759b-b810-494494689281.htm" />
<HelpTOCNode Id="d23c9a50-bd00-4090-b041-b306524f3386" Title="FormFile Properties" Url="html/8aa609d5-6e8b-6e35-9837-f8da3429a838.htm">
<HelpTOCNode Title="fieldName Property " Url="html/c4a3cc4d-81a7-ec6c-25f5-79fdf65d2db7.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="1d0aecb1-ea37-4b6f-9f29-5140102ba54a" Title="GenericHelper Class" Url="html/5b908e75-9d32-9881-7462-b3bbaa9e7f9c.htm">
<HelpTOCNode Id="dbcf4dfa-7bef-4a8b-ae03-c57e1e752c94" Title="GenericHelper Methods" Url="html/3692489d-bfdc-a4d1-fe54-64cb384b92a3.htm">
<HelpTOCNode Title="CallJs(TResult) Method " Url="html/2d3b382c-b628-4e59-62a7-609844becf57.htm" />
<HelpTOCNode Title="CallJsAsync(TResult) Method " Url="html/1a6fbe5c-bd30-63ef-47d7-84d02834f736.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="7a837c37-27c5-4db0-ab01-140a3928b883" Title="IApplicationBuilderExtensions Class" Url="html/69ab04a2-0110-291f-37d7-f015cedd79bd.htm">
<HelpTOCNode Id="24a0746e-6bd2-42f1-b736-ab0012b36b4f" Title="IApplicationBuilderExtensions Methods" Url="html/d27b7dac-069c-fc86-d675-25782eb0287e.htm">
<HelpTOCNode Title="UseAdditionalWebStaticAssets Method " Url="html/6ca8189b-2ae0-ff5f-a5a3-721329d993bd.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="a3caebee-b3b7-4ab1-a3d8-b8c860c60ff1" Title="InteropUtils Class" Url="html/2eb87aec-a43f-4ccc-ad0c-e8ed76041f01.htm">
<HelpTOCNode Id="8db64119-89f8-4f79-a2d6-8bbb5a36ac9e" Title="InteropUtils Methods" Url="html/64c43d67-dad8-dc0b-bf8a-92cf7fe6236c.htm">
<HelpTOCNode Title="CallJsVoid Method " Url="html/6fdf4e91-be52-cef8-f19b-17f19809fe47.htm" />
<HelpTOCNode Title="CallJsVoidAsync Method " Url="html/03daa401-fb46-f6a9-4db4-2ff33b284912.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="d886f940-9824-4f23-81b2-b59757d3e9f3" Title="IPHPService Interface" Url="html/844c6e1f-cb4b-457b-38ea-9e65538314f9.htm">
<HelpTOCNode Id="ba7ca618-0a32-492a-9433-cc2ba0244c4b" Title="IPHPService Methods" Url="html/607a84c4-8ad8-c532-0eeb-7fa392f3d7d0.htm">
<HelpTOCNode Title="GetModule Method " Url="html/4e392b31-0bc3-3683-096d-cc7338a853ab.htm" />
<HelpTOCNode Title="InitializePHPAsync Method " Url="html/ea2ae6a2-92f1-7229-3716-5745b538be8f.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="5edc5a47-e4c6-4f52-b2d2-0394ea1fff17" Title="JsResource Class" Url="html/b8b50bb3-4509-fa0f-a0b4-758757f7b067.htm">
<HelpTOCNode Title="JsResource Constructor " Url="html/c8f1b2e6-f093-a189-f3bd-5c349e5cdc1a.htm" />
<HelpTOCNode Id="cd3e636d-7a11-412b-aa9e-4d63b4b2f650" Title="JsResource Fields" Url="html/f3fd1e54-3e65-9b44-5913-4cad5ac27c52.htm">
<HelpTOCNode Title="createFile Field" Url="html/98c468cd-1d21-3112-985d-19690f1a84c3.htm" />
<HelpTOCNode Title="createUrlObject Field" Url="html/8250b2b2-744e-3079-8286-e75ab3617b34.htm" />
<HelpTOCNode Title="downloadFile Field" Url="html/af0d7d4b-f70e-b525-904c-476c8fb2b3a5.htm" />
<HelpTOCNode Title="getFileContentAsBase64 Field" Url="html/e391613a-2490-09d8-63ec-58228cf36fad.htm" />
<HelpTOCNode Title="getFiles Field" Url="html/7f707f53-ad73-399c-1503-4591ce96be9c.htm" />
<HelpTOCNode Title="getPost Field" Url="html/bdc4c634-ac63-330f-4c55-e5e16c933418.htm" />
<HelpTOCNode Title="IsFiles Field" Url="html/ecddba59-1193-534c-f482-e22360e24563.htm" />
<HelpTOCNode Title="IsPost Field" Url="html/988af61d-4978-5215-437f-dbea4a1fc87c.htm" />
<HelpTOCNode Title="turnFormsToClient Field" Url="html/4f806006-bb03-1aa9-dd6e-e7c7a9796331.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="ed8a01b3-8d35-412e-b74f-93fed5ae55f1" Title="Log Class" Url="html/f1aca1bd-0bf9-b70a-4441-d81c025695af.htm">
<HelpTOCNode Title="Log Constructor " Url="html/23e099be-80a5-e14b-5738-99db717a854c.htm" />
<HelpTOCNode Id="da7679cd-cc10-4847-b874-2eadcacf4de0" Title="Log Methods" Url="html/49ecc0f0-1300-b5b7-4f2d-8f4455c3a88f.htm">
<HelpTOCNode Title="Attach Method " Url="html/08d46867-5e5a-a1d0-6133-cd1b1a412ba3.htm" />
<HelpTOCNode Title="BusyNavigation Method " Url="html/666ad092-f8e1-f2f2-5a2d-e32006143964.htm" />
<HelpTOCNode Title="ComponentNavigation Method " Url="html/1163304e-65c8-8562-280a-d433ccb05370.htm" />
<HelpTOCNode Title="Dispose Method " Url="html/5a1b3448-21dc-7a09-fa67-ae04754b3035.htm" />
<HelpTOCNode Title="DownloadFile Method " Url="html/f3990380-911c-9c99-2317-6950b59149e4.htm" />
<HelpTOCNode Title="Navigation Method " Url="html/174679de-d7eb-5879-63c0-b1e6e0f99bc3.htm" />
<HelpTOCNode Title="NavigationFailed Method " Url="html/2ef55f2e-a5cc-9938-e604-ee4232713562.htm" />
<HelpTOCNode Title="PrintFiles Method " Url="html/80fd1178-8ffc-1ce7-97a4-f258fe2831b2.htm" />
<HelpTOCNode Title="PrintGet Method " Url="html/0b7a9d89-2554-3b54-aac2-d059f083317b.htm" />
<HelpTOCNode Title="PrintPost Method " Url="html/f8a5c197-44e6-0a43-c0fa-01a63523bce2.htm" />
<HelpTOCNode Title="ScriptNavigation Method " Url="html/3d7cc1a4-88ea-1514-f6c1-a9e3abeee923.htm" />
<HelpTOCNode Title="SetParameters Method " Url="html/c182d9c1-0966-7640-bed1-1e13969010f1.htm" />
</HelpTOCNode>
<HelpTOCNode Id="e24bbed7-0a07-4806-b5ee-a5f18322de6f" Title="Log Fields" Url="html/437f621b-18fc-6cc7-d19c-b04897a39eaa.htm">
<HelpTOCNode Title="_attach Field" Url="html/54a4370d-9dcb-264f-1c1c-b7341206c46b.htm" />
<HelpTOCNode Title="_busyNavigating Field" Url="html/38d55766-3c59-0193-0152-eb4621e7a20a.htm" />
<HelpTOCNode Title="_dictionary Field" Url="html/b727f608-7ddf-cd4c-6271-1cb5b2793cdb.htm" />
<HelpTOCNode Title="_dispose Field" Url="html/be376c4d-6867-bd1f-64cc-b51dc220dcc5.htm" />
<HelpTOCNode Title="_download Field" Url="html/4b5af283-46a0-24cc-0390-78aab1d231b7.htm" />
<HelpTOCNode Title="_navigating Field" Url="html/c4ce3593-08cf-388e-2a56-30bb490f9d04.htm" />
<HelpTOCNode Title="_navigatingComponent Field" Url="html/0e88e65d-50c6-8e22-69b4-086bbe99425b.htm" />
<HelpTOCNode Title="_navigatingFailed Field" Url="html/2683017e-0836-bf45-c2ea-0372a36a741d.htm" />
<HelpTOCNode Title="_navigatingScript Field" Url="html/daaece18-3453-518e-55b3-4ea02f760695.htm" />
<HelpTOCNode Title="_setParameters Field" Url="html/3b9f0bb1-998f-3480-f204-08968566b824.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="d3f17bb8-4ea8-4bfb-892a-a6db7cffb504" Title="MatchResult Class" Url="html/359cea19-f4a5-04c4-d42c-0e78a6b5238a.htm">
<HelpTOCNode Title="MatchResult Constructor " Url="html/3add87d3-220d-a140-4a72-7cdc075f06a5.htm" />
<HelpTOCNode Id="d4eeee51-98c2-4b23-83c9-0e40884b4360" Title="MatchResult Properties" Url="html/f5c059d2-b00b-4945-5134-b5f457778ff9.htm">
<HelpTOCNode Title="IsMatch Property " Url="html/4a19cda8-207d-7a0c-4b55-bb69e9057875.htm" />
<HelpTOCNode Title="MatchedRoute Property " Url="html/2db20b49-d6f4-1915-e433-cbf40a62611c.htm" />
</HelpTOCNode>
<HelpTOCNode Id="0ccd1ce6-464f-443b-9873-44230dabdd5c" Title="MatchResult Methods" Url="html/0ab90bdc-3b11-ffec-4c9a-0e4c315a391b.htm">
<HelpTOCNode Title="Match Method " Url="html/169e34fc-1658-c535-ff55-4c95a002a0b0.htm" />
<HelpTOCNode Title="NoMatch Method " Url="html/f77901bb-9930-dc2d-2168-32b823ed0800.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="49a7c508-7059-40ac-877b-455c758dd808" Title="PhpComponent Class" Url="html/e15bf912-0b3c-c0fb-c103-90fdfa4cf141.htm">
<HelpTOCNode Title="PhpComponent Constructor " Url="html/0a443cf6-617e-29b8-edc5-3729b50eca69.htm" />
<HelpTOCNode Id="726c9361-c331-4380-b439-f3f295782a0e" Title="PhpComponent Properties" Url="html/bb75abab-d1f2-6019-3c35-e96955a3e7f8.htm">
<HelpTOCNode Title="Ctx Property " Url="html/51b6c3f3-cdc0-cc83-58d7-1344fae510a8.htm" />
<HelpTOCNode Title="Js Property " Url="html/b42ec10e-a092-d31b-9a85-9ea2384af6a7.htm" />
<HelpTOCNode Title="LoggerFactory Property " Url="html/da173979-cf93-24fc-8314-81a74f8486d3.htm" />
<HelpTOCNode Title="PhpService Property " Url="html/f4841cdc-1907-fb37-1b48-cf31e7240d02.htm" />
</HelpTOCNode>
<HelpTOCNode Id="d114701d-9190-43a9-9709-25a68ab60b30" Title="PhpComponent Methods" Url="html/ed704624-8be1-6341-ffea-dde4d1881e3d.htm">
<HelpTOCNode Id="b4adde0c-91cc-45f3-bb73-c9f1308d3ae8" Title="BuildRenderTree Method " Url="html/dade2ef9-f791-012d-1806-34b357400ed2.htm">
<HelpTOCNode Title="BuildRenderTree Method (RenderTreeBuilder)" Url="html/596fea93-0fe1-a8f5-d0ba-19ea1f9c9f01.htm" />
<HelpTOCNode Title="BuildRenderTree Method (PhpTreeBuilder)" Url="html/0b3dc7a9-7df3-b15e-72ba-730ad75d35b7.htm" />
</HelpTOCNode>
<HelpTOCNode Title="Dispose Method " Url="html/9726d576-92d1-0a7c-d6e3-6d2034961bf7.htm" />
<HelpTOCNode Title="OnInitialized Method " Url="html/a00fa146-f542-23f8-788a-e55f631a10c8.htm" />
</HelpTOCNode>
<HelpTOCNode Id="a503f0ed-ab5f-43d4-8bb9-92bf3746dda9" Title="PhpComponent Fields" Url="html/ab0cf164-c511-a11f-c881-3136dacefbb0.htm">
<HelpTOCNode Title="_ctx Field" Url="html/a294004c-71fe-9529-c4db-98a609e8dd49.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="3c4870a2-d14d-4fa9-8066-9048fb884e4c" Title="PhpComponentRouteManager Class" Url="html/245596c8-b440-599b-c2b0-55475aee0d46.htm">
<HelpTOCNode Title="PhpComponentRouteManager Constructor " Url="html/9031ba19-497e-3668-d854-72068cce37ea.htm" />
<HelpTOCNode Id="d57c2852-f61d-4f5f-893c-243b1524847a" Title="PhpComponentRouteManager Properties" Url="html/68268f8d-d77f-8caa-ec32-3e4e6a295f11.htm">
<HelpTOCNode Title="Routes Property " Url="html/6daf62a6-dd54-8201-0a9d-a1b4cd9143dd.htm" />
</HelpTOCNode>
<HelpTOCNode Id="48ad1a9d-8be9-4ab6-9eb9-3949546ed99f" Title="PhpComponentRouteManager Methods" Url="html/ba8daacd-d8c4-9a31-b2ba-4ea6cfa11a9a.htm">
<HelpTOCNode Title="Match Method " Url="html/9f31f24e-17f1-d778-315f-adb719f6c9ff.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="0513ec1d-6552-450c-9329-705ac5c6077c" Title="PHPModule Class" Url="html/a74b72ff-6967-c8f8-98f4-652fc5adedf5.htm">
<HelpTOCNode Title="PHPModule Constructor " Url="html/d53534e0-02f3-f131-dafe-80e95315909a.htm" />
<HelpTOCNode Id="a8a67283-d8be-418d-82ed-9668d236401e" Title="PHPModule Methods" Url="html/506fc075-68cc-8b3f-fbe2-3a7e9ca6dd88.htm">
<HelpTOCNode Title="CreateAsync Method " Url="html/a9396a4a-7364-b1b9-62ff-43f7e8311f09.htm" />
<HelpTOCNode Title="CreateFile Method " Url="html/30c7c8b5-3f33-2e5d-1eab-f693dad5f62a.htm" />
<HelpTOCNode Title="CreateUrlObject Method " Url="html/8ed4ccfd-d0ae-490a-8dec-709521cbbb60.htm" />
<HelpTOCNode Title="Dispose Method " Url="html/f818cd9c-04af-c45a-21c3-1fc983b01292.htm" />
<HelpTOCNode Title="DownloadFile Method " Url="html/1cafae73-5609-05b1-8730-83861aa0a18e.htm" />
<HelpTOCNode Title="GetFiles Method " Url="html/2b222150-0b84-7b10-a1a1-f3b9adcc2a18.htm" />
<HelpTOCNode Title="GetPostData Method " Url="html/10e3ccba-4c33-6a60-cece-d80d7d1862c6.htm" />
<HelpTOCNode Title="Initialize Method " Url="html/253afe8e-1bf1-d10e-22be-b4fb66654866.htm" />
<HelpTOCNode Title="isFilesPresented Method " Url="html/0d984cd5-43d8-b5a9-a660-81e4aa3e4166.htm" />
<HelpTOCNode Title="IsPostRequest Method " Url="html/6c920949-977b-7dc2-a792-ea60e0a7ba42.htm" />
<HelpTOCNode Title="ReadFileContentAsBase64 Method " Url="html/2fed6888-a13f-c79f-05ab-22d17a6024c2.htm" />
<HelpTOCNode Title="SetPHPContext Method " Url="html/04aa24ea-386e-5456-91ca-6c9896b7e3ec.htm" />
<HelpTOCNode Title="TurnFormsToClientSide Method " Url="html/fb381a72-ca6a-088c-4f79-3bee27fd5ddc.htm" />
</HelpTOCNode>
<HelpTOCNode Id="c5b0a306-6e1a-480a-b69e-edc9c0b467d5" Title="PHPModule Fields" Url="html/8cd0d91f-8b91-d8f4-21df-aa103c6a95f1.htm">
<HelpTOCNode Title="_changeFormsCommand Field" Url="html/26367fe3-39d5-e07d-cb72-70b0279fe63c.htm" />
<HelpTOCNode Title="_createFileCommand Field" Url="html/47fa62db-0056-b3a4-5cb1-d7df231119ab.htm" />
<HelpTOCNode Title="_createUrlObjectCommand Field" Url="html/94c56153-a59f-f593-87f8-d33a0d30cc41.htm" />
<HelpTOCNode Title="_ctxRef Field" Url="html/df6e6ecc-d65d-f7ed-63d0-eb59bdfd1d86.htm" />
<HelpTOCNode Title="_downloadFileCommand Field" Url="html/8e549987-7f46-efe2-9686-6784387eddd5.htm" />
<HelpTOCNode Title="_getfilesCommand Field" Url="html/8e78bde9-e9b8-a11b-7fd8-33844732c064.htm" />
<HelpTOCNode Title="_getPostDataCommand Field" Url="html/0ec35144-d9b5-4de0-6273-131402bd6d51.htm" />
<HelpTOCNode Title="_importCommand Field" Url="html/4003ddca-4d66-8230-71e4-65837ce437ed.htm" />
<HelpTOCNode Title="_initializeCommand Field" Url="html/25b365f9-c4a1-77a4-f799-5b471a4a9c8e.htm" />
<HelpTOCNode Title="_initialized Field" Url="html/e59d7c39-1e2a-a9ed-9fbf-a72ae331e287.htm" />
<HelpTOCNode Title="_isFilesPresentedCommand Field" Url="html/eed5b1c6-f7e1-b364-b889-12cd0dd27aff.htm" />
<HelpTOCNode Title="_isPostRequestedCommand Field" Url="html/87eba475-4797-bb54-9496-6d17632009bc.htm" />
<HelpTOCNode Title="_modulePath Field" Url="html/1c7fc729-2a1a-10a9-07ca-366d56264a2a.htm" />
<HelpTOCNode Title="_moduleRef Field" Url="html/54314b7d-78c4-dd2a-1aae-b69879c26571.htm" />
<HelpTOCNode Title="_readAsBase64Command Field" Url="html/7f6aa096-b7d8-b99e-7080-5b9e1c18b57b.htm" />
<HelpTOCNode Title="_setPHPContextCommand Field" Url="html/cdb9f701-b0c3-be6b-face-0a2e3c2cda3c.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="ecd1cce4-c011-4778-8355-10eadcdda5cc" Title="PhpScriptProvider Class" Url="html/0ecbfd85-ef5b-4754-23cb-49d3d074cf18.htm">
<HelpTOCNode Title="PhpScriptProvider Constructor " Url="html/5e1fc03d-d893-02f5-98e6-6b4b6e8fb5fd.htm" />
<HelpTOCNode Id="3318699c-53a1-4189-8b67-378492a3ea00" Title="PhpScriptProvider Properties" Url="html/e9d23803-74ad-2ba8-cb4e-a7f125b60237.htm">
<HelpTOCNode Title="ContextLifetime Property " Url="html/c8dc7ddd-24b5-df5a-d427-5063e3101c90.htm" />
<HelpTOCNode Title="Js Property " Url="html/10edfd9f-6e23-1e07-6677-96d56acff1d2.htm" />
<HelpTOCNode Title="LoggerFactory Property " Url="html/9e38772b-4114-7d5c-dc6f-0bd2780e13ed.htm" />
<HelpTOCNode Title="Navigating Property " Url="html/b4575e86-bc5d-8040-0c72-6c49ccf82bdc.htm" />
<HelpTOCNode Title="NavigationInterception Property " Url="html/19099e7e-7cce-80be-e856-51fbf71e5fff.htm" />
<HelpTOCNode Title="NavigationManager Property " Url="html/93d9d0a0-aaa2-447d-c401-4dfd3bf9373c.htm" />
<HelpTOCNode Title="NotFound Property " Url="html/8218a6b8-e93c-12b2-ee6a-971809572c30.htm" />
<HelpTOCNode Title="PhpService Property " Url="html/fde5c23b-23c0-9b29-0158-4bf222c23780.htm" />
<HelpTOCNode Title="RouteManager Property " Url="html/e11299cb-e3fa-4ba6-a88a-e78ec9a7b957.htm" />
<HelpTOCNode Title="ScriptName Property " Url="html/2f64b2f8-f84c-0444-5e76-70be2914a2e2.htm" />
<HelpTOCNode Title="Type Property " Url="html/29b6ed0a-8da0-ed9c-9176-7c3a54a35692.htm" />
</HelpTOCNode>
<HelpTOCNode Id="48831743-3aba-4736-9015-5735beb82543" Title="PhpScriptProvider Methods" Url="html/e39f484d-70cb-9dce-23dc-026ff631bf2d.htm">
<HelpTOCNode Title="IComponent.Attach Method " Url="html/fba2f54a-afb2-a1e1-5f31-adc12d270e82.htm" />
<HelpTOCNode Title="IDisposable.Dispose Method " Url="html/0e3cc136-0087-5358-ef3b-803ac0c6a36b.htm" />
<HelpTOCNode Title="IHandleAfterRender.OnAfterRenderAsync Method " Url="html/79748d07-8c3b-3116-ee0f-060fa3a02819.htm" />
<HelpTOCNode Title="IComponent.SetParametersAsync Method " Url="html/d058d380-2b2d-eee4-97cd-521499a9c5a4.htm" />
<HelpTOCNode Title="OnLocationChanged Method " Url="html/97c9e448-816e-bfa7-cdf1-bcd70ffd5c0e.htm" />
<HelpTOCNode Title="Refresh Method " Url="html/036b8058-6e70-ae0c-a0a4-2699b55c53f7.htm" />
<HelpTOCNode Title="Render Method " Url="html/519a643a-9331-bf6c-db20-da011bb57495.htm" />
</HelpTOCNode>
<HelpTOCNode Id="d822fc40-51a4-4f39-812a-c4577f72afa5" Title="PhpScriptProvider Fields" Url="html/19bff2b1-2ea7-c948-0047-7c31ff25da2a.htm">
<HelpTOCNode Title="_ctx Field" Url="html/1ddd5d37-b0da-0ac0-d3b1-df972b06e205.htm" />
<HelpTOCNode Title="_disposed Field" Url="html/d7454168-5cfb-dada-8067-9fc7d2068160.htm" />
<HelpTOCNode Title="_firstRendering Field" Url="html/c0608b67-2d8d-a7b7-8712-db752bd3e81c.htm" />
<HelpTOCNode Title="_logger Field" Url="html/d2d47a06-4c74-2e89-0354-761cbb6d1ec6.htm" />
<HelpTOCNode Title="_module Field" Url="html/02139eb8-2e11-a491-fd16-4f922636ebed.htm" />
<HelpTOCNode Title="_navigationInterceptionEnabled Field" Url="html/dae4c2a0-6093-b13d-c21e-03e4e655a5f9.htm" />
<HelpTOCNode Title="_renderHandle Field" Url="html/64965fc9-5029-36a0-5a01-eba274a37ae2.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Title="PhpScriptProviderType Enumeration" Url="html/b3d7777d-886f-4559-5f43-1e86eff3a250.htm" />
<HelpTOCNode Id="0abb25d9-d3d1-461e-a6ae-6e97cda71a10" Title="PHPService Class" Url="html/5964ee52-bd5a-8336-7883-4218afa3af7c.htm">
<HelpTOCNode Title="PHPService Constructor " Url="html/b31f253d-ae0c-6411-ac6f-bca8f2f8515f.htm" />
<HelpTOCNode Id="3d3f8909-919b-4dde-a503-9a767d965822" Title="PHPService Methods" Url="html/b4bbe754-20e3-51d5-1ec3-464cb0f346ed.htm">
<HelpTOCNode Title="Dispose Method " Url="html/b41e0842-d3d2-1e14-2c79-e0485802affe.htm" />
<HelpTOCNode Title="GetModule Method " Url="html/1bcf3476-6f89-4872-5e54-927004a24585.htm" />
<HelpTOCNode Title="InitializePHPAsync Method " Url="html/11482d2c-78be-4581-0ac1-a3737662061f.htm" />
</HelpTOCNode>
<HelpTOCNode Id="0dcfa2ae-54b5-46ba-9e5e-36c00da67b35" Title="PHPService Fields" Url="html/5350ae04-f8bb-7258-a036-61a975f79ce8.htm">
<HelpTOCNode Title="_jsRuntime Field" Url="html/9d956d89-1d02-0ab4-a2f5-95155d26d776.htm" />
<HelpTOCNode Title="_phpModule Field" Url="html/1b4020b2-156c-96f9-f9be-c965bfae0744.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="f050bbfc-413d-49fe-8d1c-889f6ca2d122" Title="PhpTreeBuilder Class" Url="html/140bc2a8-2a41-0774-5745-85190b5edcc7.htm">
<HelpTOCNode Title="PhpTreeBuilder Constructor " Url="html/557e642d-ae39-3e88-073e-296e1b22dc2c.htm" />
<HelpTOCNode Id="d6596c09-42b5-474b-9a79-c22087f6e4b8" Title="PhpTreeBuilder Methods" Url="html/6a26a767-7183-b614-4558-a82af37c8e88.htm">
<HelpTOCNode Title="AddAttribute Method " Url="html/f63abcf3-f98d-dc1e-55b5-8e60ee870e00.htm" />
<HelpTOCNode Title="AddContent Method " Url="html/5187cebe-5a4a-e21d-1819-6a3b570c8337.htm" />
<HelpTOCNode Title="AddEventCallback Method " Url="html/593d182d-92af-2e4c-6165-80daad8cda48.htm" />
<HelpTOCNode Title="AddEventChangeCallback Method " Url="html/856d23c0-c491-0ba8-8c41-801b4e52a3eb.htm" />
<HelpTOCNode Title="AddEventClipboardCallback Method " Url="html/c73cd587-bb80-baff-f282-d79c702f9f73.htm" />
<HelpTOCNode Title="AddEventDragCallback Method " Url="html/46b890bb-56c4-d7b7-8dea-cdd956f4d81f.htm" />
<HelpTOCNode Title="AddEventErrorCallback Method " Url="html/7ac5c8ed-2964-b852-c010-fb46bd2bcafb.htm" />
<HelpTOCNode Title="AddEventEventCallback Method " Url="html/e577a7f4-de3c-582a-bf8c-067034a16291.htm" />
<HelpTOCNode Title="AddEventFocusCallback Method " Url="html/ecd7396c-f40b-6a81-02b1-c48f7859e197.htm" />
<HelpTOCNode Title="AddEventKeyboardCallback Method " Url="html/4dbc0f6c-6aa5-de5f-11e6-b7d2b355acfd.htm" />
<HelpTOCNode Title="AddEventMouseCallback Method " Url="html/68908e1d-8698-9392-b879-1ec015a3ee2e.htm" />
<HelpTOCNode Title="AddEventPointerCallback Method " Url="html/49e50ac2-f7cd-14d4-32d8-327089224641.htm" />
<HelpTOCNode Title="AddEventProgressCallback Method " Url="html/4e036f58-50c8-0c0e-36e4-8f14396d16d7.htm" />
<HelpTOCNode Title="AddEventTouchCallback Method " Url="html/589aec2e-96f8-78a7-3fca-d79193677e8b.htm" />
<HelpTOCNode Title="AddEventWheelCallback Method " Url="html/96bc2529-3d75-e468-2c58-37b6fcb9af36.htm" />
<HelpTOCNode Title="AddMarkupContent Method " Url="html/35c57e99-85d7-b929-8a12-f465c8249d1d.htm" />
<HelpTOCNode Title="CloseElement Method " Url="html/94829119-d430-1914-5018-1b0ec6bcfe88.htm" />
<HelpTOCNode Title="OpenElement Method " Url="html/afcff0b0-a46c-edb8-ca38-23b011cc9c49.htm" />
</HelpTOCNode>
<HelpTOCNode Id="46f5572e-5559-4bd8-94c3-3c10501c9048" Title="PhpTreeBuilder Fields" Url="html/6f9ac671-7f29-7fca-0b3f-663a3cf2d62b.htm">
<HelpTOCNode Title="Builder Field" Url="html/a6663c97-e036-e481-22df-d42729b058ef.htm" />
<HelpTOCNode Title="Component Field" Url="html/8ad7661f-e025-3eb4-53de-a702c1fb9882.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="a53052c8-6272-41ba-9def-53feb550f017" Title="Route Class" Url="html/7985ed87-9297-3b4f-34eb-6030ea112c1f.htm">
<HelpTOCNode Title="Route Constructor " Url="html/71fb33e2-8f0e-ae89-96e6-f99cd625c25b.htm" />
<HelpTOCNode Id="7317b135-9b25-495a-9ec2-20d160ade853" Title="Route Methods" Url="html/a0015af5-3868-6188-9096-124f8311bdfd.htm">
<HelpTOCNode Title="Match Method " Url="html/f72f2e3e-5025-46cc-1627-f367f1538ca6.htm" />
</HelpTOCNode>
<HelpTOCNode Id="4563451a-bc40-487a-b9ee-e4c26c7cb773" Title="Route Fields" Url="html/a05f4712-a60f-32ce-bacd-699c6d2afba3.htm">
<HelpTOCNode Title="Handler Field" Url="html/2a8157a9-ba24-df7d-92f4-d2961e1a7f47.htm" />
<HelpTOCNode Title="UriSegments Field" Url="html/50128348-4b4b-94b3-6faa-d9f85e4224e6.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="329c9c99-4a3e-4dd5-b4ed-7cc955a069de" Title="RouteData Structure" Url="html/652784b2-3ee6-fda9-855f-5698c5db0dba.htm">
<HelpTOCNode Title="RouteData Constructor " Url="html/e0a368fb-5bb9-c249-bf4e-186b93bbd102.htm" />
<HelpTOCNode Id="2de0ecc1-78f1-4782-aa2a-6a905601448d" Title="RouteData Properties" Url="html/3044da29-5bcc-7c49-b6f6-590811057fbd.htm">
<HelpTOCNode Title="Handler Property " Url="html/1de22cd6-2a2c-1b18-08e1-334bb6e3ebbe.htm" />
<HelpTOCNode Title="Parameters Property " Url="html/8eb226e0-3cba-42a2-7fd4-541350c64184.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="9a919ede-b2b6-4f49-ab9d-dbc0896ac1eb" Title="ScriptInfoExtensions Class" Url="html/50c17a67-5266-7550-5308-71c954cffe9a.htm">
<HelpTOCNode Id="bd98cd28-8696-440f-ad82-230054cd0161" Title="ScriptInfoExtensions Methods" Url="html/3274fa1d-779c-ba9b-d1e2-e5b6bf5d9ce2.htm">
<HelpTOCNode Title="Evaluate Method " Url="html/affe45a4-95e9-6a7c-b0f1-d24b185a07f7.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Title="SessionLifetime Enumeration" Url="html/d9bcf6b3-70db-a223-36c1-e5ea09bba9b0.htm" />
<HelpTOCNode Id="36e647a5-8829-40c1-801c-5df419dc3d24" Title="Tag Class" Url="html/2471856b-fbf3-97be-3aaa-4cc327f41d14.htm">
<HelpTOCNode Id="bd15b459-1c9f-42ef-924a-dbbe7084e637" Title="Tag Constructor " Url="html/aba1090c-2871-de79-6281-2d5f244dafb1.htm">
<HelpTOCNode Title="Tag Constructor " Url="html/31930141-bf6a-d976-201d-c3c5af778b99.htm" />
<HelpTOCNode Title="Tag Constructor (String)" Url="html/a3fb8425-db7e-f815-d568-e52405e031d8.htm" />
</HelpTOCNode>
<HelpTOCNode Id="27462f12-30fe-4ca2-b709-ebb43dd176e5" Title="Tag Methods" Url="html/ff8c40aa-d0e1-020a-f67f-fbaa261f4cae.htm">
<HelpTOCNode Title="__construct Method " Url="html/122d2bd2-fa24-0d84-b748-9e3a70300525.htm" />
<HelpTOCNode Title="ToString Method " Url="html/9f5cbf3f-4f23-48b2-a43f-8d81a36f6275.htm" />
<HelpTOCNode Title="writeWithTreeBuilder Method " Url="html/5f1331c5-6a00-881b-5ba9-bd628fd3351d.htm" />
</HelpTOCNode>
<HelpTOCNode Id="765e5f7d-6ab7-49c8-a1fb-31b57a65fcc3" Title="Tag Fields" Url="html/a4b4f1b1-06ba-88fe-2573-7a4cfbbf9f84.htm">
<HelpTOCNode Title="attributes Field" Url="html/38264408-0359-676e-4af7-17dcc8741c42.htm" />
<HelpTOCNode Title="content Field" Url="html/692fa9d4-bfff-7d1d-70a8-a775d5d15a84.htm" />
<HelpTOCNode Title="name Field" Url="html/cce9ba27-4334-eb49-322e-21a0c2e38a46.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="78b07635-d021-4905-9188-beed43566618" Title="Text Class" Url="html/092ad1c7-13d8-d06c-1bf9-38e7619c25b9.htm">
<HelpTOCNode Title="Text Constructor " Url="html/30902537-cd20-13b8-f3fd-2f33a439c663.htm" />
<HelpTOCNode Id="72cda9a6-61dd-4f9e-8000-3366c5e22653" Title="Text Methods" Url="html/f6108709-6262-f227-a568-803e27046cdc.htm">
<HelpTOCNode Title="ToString Method " Url="html/2029bd22-d782-3c53-0934-8c4b6a1cd7ca.htm" />
<HelpTOCNode Title="writeWithTreeBuilder Method " Url="html/17ffcd8a-a0f4-3280-2754-90781a9209b2.htm" />
</HelpTOCNode>
<HelpTOCNode Id="5b7ee505-5250-4af6-84a5-9c53be7c4814" Title="Text Type Conversions" Url="html/5f9745ce-c393-1731-d83e-3b136f98718c.htm">
<HelpTOCNode Id="cdb61377-4e76-488e-b129-8691c8e90e22" Title="Implicit Conversion Operators" Url="html/f07f97c9-e3ee-6f14-553a-174c73a6c1ea.htm">
<HelpTOCNode Title="Implicit Conversion (String to Text)" Url="html/c6dc951b-b683-0027-7f50-39370fde839f.htm" />
<HelpTOCNode Title="Implicit Conversion (Text to String)" Url="html/127defa0-5774-d179-bda6-36c4e1c35cb4.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="e78cbf0f-abd8-481b-acd8-926bea6c8267" Title="Text Fields" Url="html/b255bd01-9801-62f5-f5e6-aadcf9ec6910.htm">
<HelpTOCNode Title="content Field" Url="html/ed33d8c4-fa92-4310-4f8e-496afacbc5ab.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="9b830788-b738-4ed8-a752-c77e47427a4e" Title="Timer Class" Url="html/d73c6260-9acd-fbe5-3eb6-cf9b00997d1c.htm">
<HelpTOCNode Title="Timer Constructor " Url="html/f131f989-9423-e968-71d2-cfa2eb577995.htm" />
<HelpTOCNode Id="e5b5427b-d25d-4c5c-8cc9-dbae380986c3" Title="Timer Methods" Url="html/05f3c56d-d366-6948-42fd-1f4798d5c708.htm">
<HelpTOCNode Title="addEventElapsed Method " Url="html/c0f04228-0e4c-19fb-17bd-34b4aab80dfe.htm" />
<HelpTOCNode Title="AutoReset Method " Url="html/d9703d10-dd5c-dcab-41a5-4234fccbe53b.htm" />
<HelpTOCNode Title="Dispose Method " Url="html/abc5b41e-2592-6027-801d-9cf0ca35dd9a.htm" />
<HelpTOCNode Title="Start Method " Url="html/065e8756-55a5-81bc-50cd-d75f783a8ebb.htm" />
<HelpTOCNode Title="Stop Method " Url="html/09e69163-0a90-1b95-28a5-887e903d3650.htm" />
</HelpTOCNode>
<HelpTOCNode Id="cab2ac45-3fe2-4885-8508-0912b90f13de" Title="Timer Fields" Url="html/e32e201d-4ac0-13b5-c9d3-137b169466be.htm">
<HelpTOCNode Title="timer Field" Url="html/5dd2f252-8a51-0a91-4623-653f127d7e6e.htm" />
</HelpTOCNode>
</HelpTOCNode>
<HelpTOCNode Id="b6694618-17ba-4d51-b976-f8539cd6203f" Title="WebAssemblyHostBuilderExtensions Class" Url="html/b0836608-02a7-f98f-003d-8e6e369bf253.htm">
<HelpTOCNode Id="0b056190-e723-4a77-8a4c-83acd554799b" Title="WebAssemblyHostBuilderExtensions Methods" Url="html/1185c53f-a455-fad9-62df-97a649556271.htm">
<HelpTOCNode Title="AddPhp Method " Url="html/22bcbb7c-89fc-2926-d156-adcc02ffe172.htm" />
</HelpTOCNode>
</HelpTOCNode>
</HelpTOCNode>
</HelpTOC>

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1 +0,0 @@
{"error":[22085634],"exposes":[458753,917505,1114113,1310721,1376257,1638401,1835009,2293761,3407873,3538945,3801089,3866625,4128769,4653057,4784129,4980737,5505025,5373953,5767169,6225921,6356993,6881281,7340033,7536641,8126465,8257537,8454145,8585217,8781825,8847361,9043969,9175041,9633793,9830401,9895937,10027009,10420225,10944513,11010049,11534337,11862017,11993089,12582913,12779521,13041665,13172737,14221313,14352385,15007745,15269889,15400961,15597569,15728641,15859713,16056321,16515073,16580609,17367041,18022401,18153473,18677761,18874369,19070977,19398657,19660801,19726337,20119553,20185089,20512769,20578305,21430273,21692417,21823489,21889025,22151169],"extensions":[720897,1245185,2621441,2686977,3014657,5898241,6291457,7798785,8912897,8978433,10354689,10485761,17170433,20250625,21757953],"enumerations":[17432577],"explicit":[3407873,17498113],"eventhelper":[4194306,8847364,12845058,17432577,18022403],"eventname":[4194306,12845058],"evaluate":[4784129,7340033,15073282],"enum":[14090241,16449537],"entered":[22282241],"elementname":[14483458],"extension":[3670018,10354690,15073282],"encoding":[2949124,8585218,11010050],"event":[458754,655361,1835010,4194305,8847363,10944514,11927553,12845057,15990785,16711681,17432577,18022402,20185090],"evaluates":[4784129,7340033,15073281],"environment":[5767169,17432577],"elapsed":[458753,15990785,20185089],"exception":[1441794,4915202,5636098,6619138,7274498,9568258,13500418,15204354,17760258,19136514],"enumeration":[14090241,16449537,17432577],"enables":[4980737,8847361,9043969,11534337,17432580],"events":[458754,589825,1048577,10944513,18219010,20119553,20185090],"evaluation":[3407873,17432577]}

Просмотреть файл

@ -1 +0,0 @@
{"fetchfiles":[917505,6225921,16908290],"field":[65538,1441794,1900546,3080194,3145730,3342338,4325378,4849666,4915202,5046274,5636098,5963778,6422530,6488066,6619138,7077890,7274498,7667714,7929858,7995394,8060930,8716290,9109506,9240578,9371650,9568258,10551298,10813442,11141122,11337730,11468802,11665410,11796482,12058626,12255234,12320770,12451842,12648450,13369346,13500418,13697026,13959170,14024706,14286850,14680066,14811138,15204354,16121858,16318466,16646146,16973826,17039362,17301506,17694722,17760258,17956866,18087938,18219010,18350082,18743298,18808834,19136514,19791874,19857410,20381698,20643842,20774914,21299202,21561346,21954562],"form":[917505,6225921,16908289,17367041,17432577],"following":[458753,917505,1114113,1310721,1376257,1638401,1835009,2293761,3407873,3538945,3801089,3866625,4128769,4653057,4784129,4980737,5505025,5373953,5767169,6225921,6356993,6881281,7340033,7536641,8126465,8257537,8454145,8585217,8781825,8847361,9043969,9175041,9633793,9830401,9895937,10027009,10420225,10944513,11010049,11534337,11862017,11993089,12582913,12779521,13041665,13172737,14221313,14352385,15007745,15269889,15400961,15597569,15728641,15859713,16056321,16515073,16580609,17367041,18022401,18153473,18677761,18874369,19070977,19398657,19660801,19726337,20119553,20185089,20512769,20578305,21430273,21692417,21823489,21889025,22151169],"firstrendering":[17170434],"functions":[4980737,9043969,17432578],"false":[458753,13631489,15990785,20185089],"filemanager":[917507,3014660,6225926,10813444,12320770,12451842,12713986,16908290,17432577,17825794,19791874,21561346,22216706],"fieldname":[14221313,17367041,17629186],"formats":[8126465,15007745,17432578],"function":[262145,2752513,4259841,4980738,5505026,5767173,9043970,9633794,10223617,10289155,10878979,13762563,16252929,17432577,18677765,20578305,21233667],"file":[851969,917506,3473409,3866628,4456450,5767171,6225923,6553601,11534340,12713985,14352385,17367041,17432579,18677763,19267585,20250626,20905985,22216705],"formfile":[5242882,10485762,12451842,14221315,14352385,16908290,17104900,17367046,17432577,17629186,20250626],"fetched":[3866625,11534337,19267585],"fields":[1310721,2293761,2555906,3407873,3801090,3932161,4128769,5177346,5767169,6225921,6684674,8126465,8192002,8585217,9895938,10027009,10944513,11862017,12189698,13041665,13172738,15007745,15269890,15400962,15663106,16515074,16580610,16777217,17825794,18874370,19398657,19660801,20119554,20185089,20512770,20578305],"fileutils":[851970,3473410,3866627,11534340,17432577,19267586,20905986],"first":[3670017,10354689,15073281],"finds":[3538945,9830401,10354689,17432577,19070977],"flush":[8585218,12582914,16842754],"factory":[3014658],"follow":[1],"files":[917505,6225921,10485762,11534337,16908289,17432577]}

Просмотреть файл

@ -1 +0,0 @@
{"getdownloadfile":[5767169,6553602,18677761],"getfiles":[5242882,6881281,11141122,13041665,20512769,20578305],"getpostdata":[1769474,1900545,6881281,13041665],"generichelper":[2752514,4259842,5505027,9043972,17432577],"getfiledata":[917505,6225921,12713986],"getbrowserfilecontent":[3866625,11534337,19267586],"getmodule":[2883587,7405570,8257537,10027009,11993089,15859713],"generic":[1245185,9043969,10485761,17432577,18546689,19988481,21757953],"getfilecontentasbase64":[16973826,20512769,20578305],"general":[22085633],"guide":[3670017,10354689,15073281],"getfilesdata":[11796481],"getpost":[20512769,20578305,21954562],"given":[262145,2752513,3473409,3866625,4259841,4784129,4980738,5505026,5767169,7340033,9043970,9633794,10223617,11534337,15073281,16252929,18677761],"gets":[917506,3866625,5767169,6225922,6553601,11534337,12713985,16908289,18677761,19267585]}

Просмотреть файл

@ -1 +0,0 @@
{"helper":[4980737,8847361,9043969,17432579],"handler":[458753,655363,1835009,3735554,4194306,4653057,4849666,8454145,8847361,10158082,10944513,11862017,12845058,13172737,16711683,17432577,18546690,20185089],"hierarchy":[1310721,2293761,3407873,3538945,4128769,4980737,5373953,5767169,6225921,7340033,8126465,8585217,8847361,9043969,9830401,10027009,10944513,11534337,11862017,13041665,14352385,15007745,16056321,17367041,19398657,19660801,20185089,20578305],"html":[917505,4128769,6225921,8126465,15007745,16908289,17367041,17432580]}

Просмотреть файл

@ -1 +0,0 @@
{"icomponent":[3407875,17498114,18612227,20971523],"iphpservice":[1703937,2228225,2883585,3014658,5767169,7405570,8257539,8978435,10027009,11993091,17432577,18481154,18677761,20840450,21626882],"interfaces":[17432577],"indicator":[15990786],"iapplicationbuilderextensions":[9830404,10354690,17432577,19070979],"int":[851969,2424833,2490370,4063233,5570561,5701634,5832705,6094849,6160385,6553601,6750209,6946817,7143425,7733249,8388609,9437186,9764865,11206657,12124161,12713985,12910593,13107201,13893634,14155777,14483457,15794177,19005441,19267585,19791873,19922945,20054017,20905985],"interoperability":[4456449,5767170,6225921,15466497,17432577,18677762],"int32":[851969,2424833,2490371,4063233,5570561,5701634,5832705,6094849,6160385,6553601,6750209,6946817,7143425,7733249,8388609,9437187,9764865,11206657,12124161,12713985,12910593,13107201,13893635,14155777,14483457,15794177,19005441,19267585,19791873,19922945,20054017,20905985],"ihandleafterrender":[3407874,11272195,17498113],"initializephpasync":[2228227,8257537,10027009,11993089,15859713,18481154],"idisposable":[1572867,3407874,10027009,11993089,13041665,13434881,14548993,14614529,17498113,19398657,20185089,21364737],"inheriting":[17432577,19398657],"injectattribute":[2162689,2818049,11403265,14417921,14942209,17235969,18939905,20840449,21626881],"ijsruntime":[1703937,2162690,5767169,8978435,13238274,13565954,14024706,14942210,18350082,18677761],"isfilespresented":[1507330,6881281,13041665,20643841],"implements":[1572865,2228225,2490369,2883585,9437185,11272193,13434881,13893633,14548993,14614529,18612225,20971521,21364737],"ismatch":[5373953,6029314,6815746,21823489],"import":[6422529],"inheritance":[1310721,2293761,3407873,3538945,4128769,4980737,5373953,5767169,6225921,7340033,8126465,8585217,8847361,9043969,9830401,10027009,10944513,11534337,11862017,13041665,14352385,15007745,16056321,17367041,19398657,19660801,20185089,20578305],"ispostrequest":[6881281,9699330,13041665],"iapplicationbuilder":[10354691],"ispost":[11468802,20512769,20578305],"iserviceprovider":[17891330],"information":[3473409,3670017,3866625,10354689,11534337,14352385,15073281,17367041,17432578],"ijsinprocessobjectreference":[7929858,19202050],"isfiles":[17956866,20512769,20578305],"initializes":[524289,983041,1310721,2293761,3014657,3407873,3538945,3932161,4128770,4390913,5439489,5373953,5767169,6029313,6225921,7012353,7602177,8126465,8454145,8585217,8650753,9306113,10027009,10158081,10944513,11862017,12976130,13041665,13238273,13828097,14352385,14745601,15007745,16777217,17104897,17367041,17891329,18546689,19202049,19398657,19464193,20185089,21037057,21495809],"iphpcallable":[655362,4194306,5832706,6160386,6750210,7143426,7733250,8388610,9764866,12124162,12910594,12845058,14155778,15794178,16711682,18219010,19005442,20054018],"interface":[3407873,5701633,7405569,8257537,8781825,11993090,12779523,17432578,17498113,18481153],"interval":[21495810],"inherited":[14221316,17367044],"input":[8585217,17432577],"interoputils":[262146,4980740,9633795,10223618,17432577],"instance":[524289,983041,1310721,2293761,3014657,3407873,3538945,3670018,4128770,4390913,5439489,5373953,5767169,6029313,6225921,7012353,7602177,8126465,8454145,8585217,8650753,9306113,10027009,10158081,10354690,10944513,11862017,12976130,13041665,13238273,13828097,14352385,14745601,15007745,15073282,17104897,17367041,17891329,18546689,19202049,19398657,19464193,20185089,21037057,21495809],"initialize":[4587522,5046273,6881281,13041665],"implementations":[3407873,17498113],"ispostrequested":[13369345],"implicit":[2359297,19529729],"ilogger":[720898,1245186,1441794,2621442,2686978,4915202,5636098,5898242,6291458,6619138,7274498,7798786,8912898,9568258,10485762,10813442,12648450,13500418,15204354,17170434,17301506,17760258,19136514,20250626,21757954],"iconfiguration":[10354690],"iloggerfactory":[1703937,3014658,5767169,8978435,14417922,17235970,18677761],"inavigationinterception":[2818050]}

Просмотреть файл

@ -1 +0,0 @@
{"jsinvokableattribute":[16252929],"json":[9830401,10354689,19070977],"jsinterop":[8978433,13238273,13565953,19202049],"jsresource":[8060930,11141122,11468802,11665410,12058626,13959170,16777220,16973826,17432577,17956866,20512771,20578309,21954562],"jsruntime":[13238274,13565954],"javascript":[262145,2752513,4259841,4456449,4980739,5505026,5767174,6225921,9043970,9633794,10223617,10289153,10878977,13762561,15466497,17432579,18677766,20578305,21233665]}

Просмотреть файл

@ -1 +0,0 @@
{"key2":[8126465,17432577],"key1":[8126465,17432577]}

Просмотреть файл

@ -1 +0,0 @@
{"log":[720898,1245186,1441794,2621442,2686978,3932164,4915202,5636098,5898242,6291458,6356995,6619138,6684674,7274498,7798786,8912898,9568258,10485762,13500418,15204354,17170434,17432577,17760258,19136514,19660805,20250626,21757954],"link":[1],"load":[917505,6225921,22085633,22216705],"logger":[720898,1245186,2621442,2686978,5898242,6291458,7798786,8912898,10485762,17170434,20250626,21757954],"listener":[4194305,8847362,12845057,18022402],"loads":[4456449,5767169,18677761],"looking":[22282241],"library":[131073,65537,196609,262145,327681,393217,458753,524289,589825,655361,720897,786433,851969,917505,983041,1048577,1114113,1179649,1245185,1310721,1376257,1441793,1507329,1572865,1638401,1703937,1769473,1835009,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2555905,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3801089,3866625,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4653057,4718593,4784129,4849665,4915201,4980737,5046273,5111809,5177345,5242881,5308417,5373953,5439489,5505025,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6356993,6422529,6488065,6553601,6619137,6684673,6750209,6815745,6881281,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7536641,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8192001,8257537,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8781825,8847361,8912897,8978433,9043969,9109505,9175041,9240577,9306113,9371649,9437185,9502721,9568257,9633793,9699329,9764865,9830401,9895937,9961473,10027009,10092545,10158081,10223617,10289153,10354689,10420225,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12189697,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713985,12779521,12845057,12910593,12976129,13041665,13107201,13172737,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14221313,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15269889,15335425,15400961,15466497,15532033,15597569,15663105,15728641,15794177,15859713,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16515073,16580609,16646145,16711681,16777217,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17432577,17498113,17563649,17629185,17694721,17760257,17825793,17891329,17956865,18022401,18087937,18153473,18219009,18284545,18350081,18415617,18481153,18546689,18612225,18677761,18743297,18808833,18874369,18939905,19005441,19070977,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19726337,19791873,19857409,19922945,19988481,20054017,20119553,20185089,20250625,20316161,20381697,20447233,20512769,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21102593,21168129,21233665,21299201,21364737,21430273,21495809,21561345,21626881,21692417,21757953,21823489,21889025,21954561,22020097,22085633,22151169,22216705,22282241],"list":[1703937,8716290,10485762,12451842,12976129,14811138,16908290,18415617,21102593],"lifetime":[17170434],"locationchangedeventargs":[15138818],"loggerfactory":[3407873,8978434,14417922,17235970,18153473,19398657,21692417],"logging":[720897,1245185,2621441,2686977,3014657,5898241,6291457,7798785,8912897,8978433,10485761,17170433,17432577,19660801,20250625,21757953],"locate":[22282241],"longer":[22282241]}

Просмотреть файл

@ -1 +0,0 @@
{"memory":[917506,5767169,6225922,6553601,12713985,14352385,17432577,18677761,22216705],"matchedroute":[2097154,4718594,5373953,6029314,21823489],"managed":[8585217,13631490],"module":[19202050],"member":[14090241,16449537],"management":[6225921,17432577],"methods":[458754,917506,1310721,1376258,1638402,1835010,2293761,3407873,3538945,3670018,3866626,4128769,4784130,4980737,5505026,5373953,5767169,6225921,6356994,6881282,7340033,7536642,8126465,8257538,8585217,8781826,8847361,9043969,9633794,9830401,10027009,10354690,10420226,10944513,11534337,11862017,11993089,12582914,12779521,13041665,15007745,15073282,15597570,15728642,15859714,16056321,17498114,18022402,18677762,19070978,19398657,19660801,19726338,20185089,21430274,21889026,22151170],"match":[1376257,2097154,3538945,5373953,11862017,14876674,15728641,20316162,21430273],"matchresult":[1376259,2097156,4718594,5373958,6029316,6815746,14876674,17432577,20316162,20709380,21823491],"marshalbyrefobject":[8585217],"misspelled":[22282241],"method":[131073,196609,262147,327681,393217,589825,655361,720897,851969,1048577,1179649,1245185,1507329,1572865,1703937,1769473,1966081,2031617,2097153,2228225,2490369,2621441,2686977,2752515,2883585,3211265,3276801,3473409,3604481,3670021,3997697,4063233,4194305,4259843,4456449,4587521,5111809,5242881,5570561,5701633,5832705,5898241,6094849,6160385,6291457,6553601,6750209,6946817,7143425,7208961,7405569,7471105,7733249,7798785,8323073,8388609,8519681,8912897,8978433,9437185,9699329,9764865,10092545,10223619,10289153,10354693,10485761,10616833,10682369,10747905,10878977,11272193,11730945,11927553,12124161,12517377,12713985,12910593,12845057,13107201,13303809,13434881,13565953,13631489,13762561,13893633,14155777,14483457,14548993,14614529,14876673,15073285,15138817,15335425,15466497,15794177,15925249,15990785,16252929,16384001,16711681,16842753,16908289,17170433,18284545,18415617,18481153,18612225,19005441,19267585,19333121,19595265,19922945,19988481,20054017,20250625,20316161,20447233,20709377,20905985,20971521,21168129,21233665,21364737,21757953,22020097,22216705],"members":[458753,917505,1114113,1310721,1376257,1638401,1835009,2293761,3407873,3538945,3801089,3866625,4128769,4653057,4784129,4980737,5505025,5373953,5767169,6225921,6356993,6881281,7340033,7536641,8126465,8257537,8454145,8585217,8781825,8847361,9043969,9175041,9633793,9830401,9895937,10027009,10420225,10944513,11010049,11534337,11862017,11993089,12582913,12779521,13041665,13172737,14090241,14221313,14352385,15007745,15269889,15400961,15597569,15728641,15859713,16056321,16449537,16515073,16580609,17367041,18022401,18153473,18677761,18874369,19070977,19398657,19660801,19726337,20119553,20185089,20512769,20578305,21430273,21692417,21823489,21889025,22151169],"matching":[5373953,17432577],"microsoft":[393217,720897,1245185,2621441,2686977,3014657,5898241,6291457,7602177,7798785,8912897,8978434,10354690,10485761,10747905,13238273,13565953,15073281,15138817,17170433,18612225,19202049,19398657,20250625,20971521,21037057,21168129,21757953]}

Просмотреть файл

@ -1 +0,0 @@
{"nomatch":[1376257,5373953,20709378],"namespace":[131074,65538,196610,262146,327682,393218,458753,524290,589826,655362,720898,851970,917505,983042,1048578,1114113,1179650,1245186,1310722,1376257,1441794,1507330,1572866,1638401,1703937,1769474,1835009,1900546,1966082,2031618,2097154,2162690,2228226,2293762,2359298,2424834,2490370,2555905,2621442,2686978,2752514,2818050,2883586,2949122,3014658,3080194,3145730,3211266,3276802,3342338,3407874,3473410,3538946,3604482,3670018,3735554,3801089,3866625,3932162,3997698,4063234,4128770,4194306,4259842,4325378,4390914,4456450,4521986,4587522,4653057,4718594,4784129,4849666,4915202,4980738,5046274,5111810,5177345,5242882,5308418,5439490,5505025,5373954,5570562,5636098,5701634,5767170,5832706,5898242,5963778,6029314,6094850,6160386,6225922,6291458,6356993,6422530,6488066,6553602,6619138,6684673,6750210,6815746,6881281,6946818,7012354,7077890,7143426,7208962,7274498,7340034,7405570,7471106,7536641,7602178,7667714,7733250,7798786,7864322,7929858,7995394,8060930,8126466,8192001,8257537,8323074,8388610,8454146,8519682,8585218,8650754,8716290,8781825,8847362,8912898,8978434,9043970,9109506,9175041,9240578,9306114,9371650,9437186,9502722,9568258,9633793,9699330,9764866,9830402,9895937,9961473,10027010,10092546,10158082,10223618,10289154,10354690,10420225,10485762,10551298,10616834,10682370,10747906,10813442,10878978,10944514,11010049,11075586,11141122,11206658,11272194,11337730,11403266,11468802,11534338,11599874,11665410,11730946,11796482,11862018,11927554,11993090,12058626,12124162,12189697,12255234,12320770,12386306,12451842,12517378,12582913,12648450,12713986,12779522,12910594,12845058,12976129,13041666,13107202,13172737,13238274,13303810,13369346,13434882,13500418,13565954,13631490,13697026,13762562,13828098,13893634,13959170,14024706,14090242,14155778,14221313,14286850,14352386,14417922,14483458,14548994,14614530,14680066,14745602,14811138,14876674,14942210,15007746,15073282,15138818,15204354,15269889,15335426,15400961,15466498,15532034,15597569,15663105,15728641,15794178,15859713,15925250,15990786,16056322,16121858,16187394,16252930,16318466,16384002,16449538,16515073,16580609,16646146,16777218,16711682,16842754,16908290,16973826,17039362,17104898,17170434,17235970,17301506,17367042,17432577,17498113,17563650,17629186,17694722,17760258,17825793,17891330,17956866,18022401,18087938,18153473,18219010,18284546,18350082,18415617,18481154,18546690,18612226,18677761,18743298,18808834,18874369,18939906,19005442,19070977,19136514,19202050,19267586,19333122,19398658,19464194,19529730,19595266,19660802,19726337,19791874,19857410,19922946,19988482,20054018,20119553,20185090,20250626,20316162,20381698,20447234,20512769,20578306,20643842,20709378,20774914,20840450,20905986,20971522,21037058,21102593,21168130,21233666,21299202,21364738,21430273,21495810,21561346,21626882,21692417,21757954,21823489,21889025,21954562,22020098,22151169,22216706],"navigation":[1638401,2621442,3407873,3670017,6356993,9830401,10354689,16056321,17432577,19070977,19660801],"number":[655361,1835009,5701634,10944513],"new":[524289,983041,1310721,2293761,3014657,3407873,3538945,4128770,4390913,5439489,5373953,5767169,6029313,6225921,7012353,7602177,8126465,8454145,8585217,8650753,9306113,10027009,10158081,10944513,11862017,12976130,13041665,13238273,13828097,14352385,14745601,15007745,17104897,17367041,17891329,18546689,19202049,19398657,19464193,20185089,21037057,21495809],"net":[8847362,12845057,17432578,18022401,20185089],"names":[17432577,20578305],"navigationinterception":[2818050,3407873,18153473],"navigating":[3407873,15532034,18153473],"notfound":[3407873,11075586,18153473],"navigationmanager":[3407873,11403268,18153473],"navigationfailed":[6291458,6356993,19660801]}

Просмотреть файл

@ -1 +0,0 @@
{"onlocationchanged":[3407873,15138818,17498113],"overrides":[1310721,1835009,4128769,7536641,8126465,8585220,10944513,11010049,12582915,15007745,15597569,18415617,19398658,19726338,21889025,22151169],"order":[4456449,5767169,18677761],"obtained":[17367041,17432577],"offsetget":[1835009,7536641,8126465,10944513,19333122,22020098],"occurred":[22085633],"openelement":[2293761,10420225,14483458],"optionally":[8585217,13631489],"overload":[1179649,1703937,2359297,5439489,8978433,10747905,12976129,14745601,18415617,19529729,19595265,21102593],"operator":[2359297,19529729],"override":[2949121,3604481,7208961,10616833,10747905,12517377,13631489,15335425,15925249,16384001,16842753],"offsetset":[327682,1835009,7536641,8126465,8519682,10944513],"onafterrenderasync":[3407873,11272195,17498113],"offset":[327682,3997698,8323074,8519682,10092546,13303810,19333122,22020098],"operators":[1310721,9961473,21102593],"onnavigationchanged":[16449537],"offsetexists":[1835009,3997698,7536641,8126465,10944513,13303810],"object":[262146,851969,1310722,1835009,2293761,2752514,3407873,3538945,3670017,3866625,4128770,4194306,4259842,4980737,5373953,6225921,7340033,7536641,8126466,8585217,8847362,9043969,9830401,10027009,10223618,10289154,10354689,10878978,10944514,11534338,11862017,12386306,12845058,13041665,13762562,14352385,15007746,15073281,15138818,15597569,16056321,17367041,17432577,18546690,19398657,19660801,20185089,20578305,21233666,21889025,22151169],"output":[393217,5767170,18284545,18677762],"oninitialized":[16384002,19398658,19726338],"offsetunset":[1835009,7536641,8126465,8323074,10092546,10944513],"omit":[3670017,10354689,15073281]}

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1 +0,0 @@
{"query":[19988482]}

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1 +0,0 @@
{"tostring":[1310722,1835010,3604482,4128770,7208962,7536642,8126466,10616834,10944514,12517378,15007746,15335426,15597570,21889026,22151170],"text":[1310729,2359303,2490370,3604482,7012356,9961476,16515075,17432578,18743298,19529735,21102596,22151171],"textcontent":[6094850,6946818],"tag":[2031618,4128780,5439493,5963779,8716291,9437186,10944513,12976134,14745605,15007745,15335426,15400966,17039363,17432580,21889027],"turnformstoclientside":[4325377,6881281,13041665,20447234],"top":[458753,917505,1114113,1310724,1376257,1638401,1703937,1835009,2293763,2555905,3407877,3538947,3801089,3866625,4128771,4653057,4784129,4980737,5177345,5505025,5373955,5767171,6225923,6356993,6684673,6881281,7340033,7536641,8126467,8192001,8257537,8454146,8585220,8781825,8847361,9043969,9175041,9633793,9830401,9895937,9961473,10027011,10420225,10944515,11010049,11534337,11862019,11993089,12189697,12582913,12779521,12976129,13041667,13172737,14221313,14352386,15007747,15269889,15400961,15597569,15663105,15728641,15859713,16056321,16515073,16580609,17367042,17498114,17825793,18022401,18153473,18415617,18677761,18874369,19070977,19398660,19660803,19726337,20119553,20185091,20512769,20578306,21102593,21430273,21692417,21823489,21889025,22151169,22282241],"target":[4194306,12845058],"task":[2228226,4456450,5570562,11272194,13565954,18481154,18612226,22216706],"typo":[22282241],"tresult":[2752517,4259845,5505026,5767170,9043970,10289157,18677762,21233669],"type":[65537,196609,262147,327682,393217,458753,655362,720897,851971,917505,1114114,1179649,1245186,1310721,1376257,1441793,1507329,1638401,1769473,1835009,1900545,1966081,2031617,2097154,2162689,2228225,2293761,2359298,2424833,2490372,2621443,2686978,2752517,2818049,2883585,2949121,3014658,3080193,3145729,3211265,3342337,3407874,3473414,3538945,3604481,3670019,3735555,3801089,3866626,3997698,4063233,4128769,4194308,4259845,4325377,4456449,4521985,4653057,4718593,4784129,4849667,4915201,4980737,5046273,5111812,5242881,5308419,5505025,5373953,5570562,5636097,5701636,5767169,5832708,5898242,5963777,6029314,6094850,6160388,6225921,6291458,6356993,6422529,6488065,6553602,6619137,6750212,6881281,6815745,6946818,7012353,7077889,7143428,7208961,7274497,7340033,7405569,7471105,7536641,7602178,7667713,7733252,7798785,7864321,7929857,7995393,8060929,8126465,8257537,8323073,8388612,8454145,8519682,8585217,8781825,8716289,8847362,8912897,8978436,9043969,9109505,9175041,9240577,9371649,9437188,9502721,9568257,9633793,9699329,9764868,9830401,9895937,9961473,10027009,10092545,10158084,10223619,10289156,10354691,10420225,10485762,10551297,10616833,10682369,10747905,10813441,10878978,10944513,11010049,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534338,11599873,11665409,11796481,11862017,11927553,11993089,12058625,12124164,12255233,12320769,12386305,12451841,12517377,12582913,12648449,12713986,12779521,12910596,12845062,13041665,13107202,13172737,13238273,13303810,13369345,13500417,13565954,13631489,13697025,13762562,13828097,13893636,13959169,14024705,14090241,14155780,14221314,14286849,14352386,14417921,14483458,14680065,14745601,14811137,14876674,14942209,15007745,15073285,15138818,15204353,15269889,15335425,15400961,15532033,15597569,15728641,15794180,15859713,15925249,15990785,16056321,16121857,16187393,16252931,16318465,16449537,16515073,16580609,16646145,16711682,16908289,16973825,17039361,17170438,17235969,17301505,17367042,17432578,17563651,17629185,17694721,17760257,17891329,17956865,18022402,18087937,18153474,18219009,18350081,18481153,18546692,18612226,18677761,18743297,18808833,18874369,18939905,19005444,19070977,19136513,19202049,19267587,19333122,19398657,19529730,19595266,19660801,19726337,19791873,19857409,19922947,19988481,20054020,20119553,20185089,20250626,20316162,20381697,20512769,20578305,20643841,20709377,20774913,20840449,20905986,20971521,21037057,21168130,21233668,21299201,21430273,21495809,21561345,21626881,21692417,21757954,21823489,21889025,21954561,22020098,22151169,22216705],"title":[786433],"textwriter":[8585222,11010049,12582915],"try":[22085633,22282241],"teventargs":[8847361,12845059,18022401],"true":[13631489],"tree":[4784129,7340033,15073281],"turnformstoclient":[8060930,20512769,20578305],"timer":[458758,589827,1048579,9371654,13434883,15990787,16580612,16711682,17432578,20185100,21495812],"time":[4456449,5767169,18677761],"topic":[1]}

Просмотреть файл

@ -1 +0,0 @@
{"using":[4456449,5767170,6225921,15466497,17432577,18677762],"urisegments":[6488066,10158082,11862017,13172737],"uploaded":[917505,6225921,16908289],"useadditionalwebstaticassets":[9830401,10354690,19070977],"used":[3276801,5701633,5767169,8585217,9830401,10027009,10354689,12779521,13041665,13434881,13631489,14548993,14614529,17432578,19070977,19398657,20185089,20578305,21364737],"url":[851970,3866626,11534338,22282241],"unmanaged":[8585217,13631491],"usage":[3670017,10354689,15073281]}

Просмотреть файл

@ -1 +0,0 @@
{"visual":[3670018,10354690,15073282],"value1":[8126465,17432577],"virtual":[3276801,14614529],"version":[131073,65537,196609,262145,327681,393217,524289,589825,655361,720897,851969,983041,1048577,1179649,1245185,1310721,1441793,1507329,1572865,1769473,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670017,3735553,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4718593,4849665,4915201,4980737,5046273,5111809,5242881,5308417,5439489,5373953,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6422529,6488065,6553601,6619137,6750209,6815745,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8847361,8912897,8978433,9043969,9109505,9240577,9306113,9371649,9437185,9502721,9568257,9699329,9764865,9830401,10027009,10092545,10158081,10223617,10289153,10354689,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12255233,12320769,12386305,12451841,12517377,12648449,12713985,12779521,12910593,12845057,13041665,13107201,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828097,13893633,13959169,14024705,14090241,14155777,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15335425,15466497,15532033,15794177,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16646145,16777217,16711681,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17563649,17629185,17694721,17760257,17891329,17956865,18087937,18219009,18284545,18350081,18481153,18546689,18612225,18743297,18808833,18939905,19005441,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19791873,19857409,19922945,19988481,20054017,20185089,20250625,20316161,20381697,20447233,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21168129,21233665,21299201,21364737,21495809,21561345,21626881,21757953,21954561,22020097,22216705],"value":[65537,327682,851969,1441793,1507329,1769473,1900545,2097153,2162689,2228225,2359297,2424833,2490369,2752513,2818049,2883585,2949121,3080193,3145729,3211265,3342337,3473409,3604481,3735553,3997697,4259841,4325377,4456449,4521985,4718593,4849665,4915201,5046273,5111809,5242881,5308417,5570561,5636097,5701633,5832706,5963777,6160386,6422529,6488065,6553601,6619137,6750210,6815745,7077889,7143426,7208961,7274497,7405569,7667713,7733250,7864321,7929857,7995393,8060929,8388610,8519682,8716289,8978433,9109505,9240577,9371649,9437185,9502721,9568257,9699329,9764866,10289153,10551297,10616833,10813441,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11599873,11665409,11796481,12058625,12124162,12255233,12320769,12386305,12451841,12517377,12648449,12713985,12910594,13107201,13303809,13369345,13500417,13565953,13697025,13893633,13959169,14024705,14090241,14155778,14286849,14417921,14680065,14811137,14876673,14942209,15073281,15204353,15335425,15532033,15794178,15925250,16121857,16187393,16252929,16318465,16449537,16646145,16908289,16973825,17039361,17235969,17301505,17563649,17629185,17694721,17760257,17956865,18087937,18219009,18350081,18481153,18612225,18743297,18808833,18939905,19005442,19136513,19267585,19333121,19529729,19595265,19791873,19857409,19922946,20054018,20316161,20381697,20643841,20709377,20774913,20840449,21168129,21233665,21299201,21561345,21626881,21954561,22020097,22216705],"valuetask":[2752514,21233666],"void":[131073,196609,262146,327681,393217,589825,655361,720897,1048577,1179649,1245185,1572865,1966081,2031617,2621441,2686977,3276801,3670017,4063233,4194305,4587521,4980738,5767170,5832705,5898241,6094849,6160385,6291457,6750209,6946817,7143425,7471105,7733249,7798785,8323073,8388609,8519681,8912897,9633794,9764865,10092545,10223618,10354689,10485761,10682369,10747905,10878978,11730945,11927553,12124161,12910593,12845057,13434881,13631489,13762562,14155777,14483457,14548993,14614529,15138817,15466497,15794177,15925249,15990785,16384001,16711681,16842753,17170433,18284545,18677762,19005441,19922945,19988481,20054017,20250625,20447233,20905985,20971521,21364737,21757953],"value2":[8126465,17432577],"values":[1245186,21757954]}

Просмотреть файл

@ -1 +0,0 @@
{"write":[8585218,12582914,15925250],"webassemblyhostbuilderextensions":[1638403,3670018,16056324,17432577],"work":[11534337,17432577],"writewithtreebuilder":[1310721,1835009,2490371,4128769,5701634,8781825,9437187,10944513,12779521,13893635,21889025,22151169],"webassemblyhostbuilder":[3670019],"writes":[5701633,8585217,8781825,12779521,17432577],"web":[1310721,17432577,22282241],"wrapper":[17432577,20185089],"written":[5701633]}

Просмотреть файл

@ -1 +0,0 @@
{"_dictionary":[6684673,13500418,19660801],"_content":[3080193],"_busynavigating":[6619138,6684673,19660801],"_readasbase64command":[10551298,12189697,13041665],"_firstrendering":[2555905,3407873,16121858],"_disposed":[2555905,3407873,20381698],"_buffer":[8585217,15663105,20774914],"_styles":[8126465,16646146,18874369],"_setphpcontextcommand":[12189697,13041665,18087938],"_changeformscommand":[4325378,12189697,13041665],"_ctx":[2555905,3145730,3407873,14286850,15269889,19398657],"_navigatingscript":[6684673,17760258,19660801],"_fetched":[6225921,12451842,17825793],"_downloaded":[6225921,17825793,19791874],"_initialized":[12189697,13041665,19857410],"_getfilescommand":[11796482,12189697,13041665],"_setparameters":[5636098,6684673,19660801],"_importcommand":[6422530,12189697,13041665],"_createurlobjectcommand":[12189697,12255234,13041665],"_logger":[2555905,3407873,5177345,5767169,6225921,10813442,12648450,17301506,17825793],"_classes":[3801089,14811138,15007745],"_download":[6684673,7274498,19660801],"_initializecommand":[5046274,12189697,13041665],"_ctxref":[12189697,13041665,17694722],"_phpmodule":[3342338,8192001,10027009],"_module":[65538,2555905,3407873,5177345,5767169,6225921,12320770,13697026,17825793],"_navigating":[6684673,19136514,19660801],"__construct":[2031618,4128769,21889025],"_navigationinterceptionenabled":[2555905,3407873,18808834],"_createfilecommand":[7667714,12189697,13041665],"_isfilespresentedcommand":[12189697,13041665,20643842],"_filemanager":[5177345,5767169,21561346],"_modulepath":[3080194,12189697,13041665],"_attach":[6684673,9568258,19660801],"_dispose":[6684673,15204354,19660801],"_ispostrequestedcommand":[12189697,13041665,13369346],"_jsruntime":[8192001,10027009,14024706],"_navigatingfailed":[4915202,6684673,19660801],"_moduleref":[7929858,12189697,13041665],"_renderhandle":[2555905,3407873,9109506],"_downloadfilecommand":[11337730,12189697,13041665],"_js":[5177345,5767169,18350082],"_navigatingcomponent":[1441794,6684673,19660801],"_builder":[8585217,15663105,21299202],"_getpostdatacommand":[1900546,12189697,13041665]}

Просмотреть файл

@ -1 +0,0 @@
{"available":[22282241],"addeventprogresscallback":[2293761,6750210,10420225],"addsimpleeventlistener":[4194306,8847361,18022401],"appsettings":[9830401,10354689,19070977],"addeventfocuscallback":[2293761,10420225,20054018],"args":[262146,2752514,4194305,4259842,8847362,10223618,10289154,10878978,12845057,13762562,15138818,18022402,21233666],"add":[1966082,15007745,15597569],"addeventeventcallback":[2293761,10420225,19005442],"automatically":[1],"attach":[720898,3407873,6356993,17498113,19660801,20971523],"action":[1441794,4915202,5636098,6619138,7274498,9568258,13500418,15204354,17760258,19136514],"addeventchangecallback":[2293761,10420225,12910594],"addeventerrorcallback":[2293761,10420225,12124162],"assemblies":[3670018,13828098],"addeventtouchcallback":[2293761,7733250,10420225],"addeventcallback":[2293761,8388610,10420225],"api":[12779521,17432577],"addeventkeyboardcallback":[2293761,6160386,10420225],"app":[10354690],"adds":[458753,655361,1638401,1835009,1966081,3670017,4194305,8847362,10944513,11993089,12845057,15007745,15597569,16056321,16711681,17432577,18022402,20185089],"addeventmousecallback":[2293761,9764866,10420225],"ahead":[4456449,5767169,18677761],"addevent":[655362,1835009,10944513],"addeventpointercallback":[2293761,5832706,10420225],"assets":[9830401,10354689,19070977],"addeventelapsed":[458753,16711682,20185089],"addmarkupcontent":[2293761,6094850,10420225],"accepted":[655361,1835009,10944513],"addcontent":[2293761,6946818,10420225],"assembly":[131073,65537,196609,262145,327681,393217,524289,589825,655361,720897,851969,983041,1048577,1179649,1245185,1310721,1441793,1507329,1572865,1769473,1900545,1966081,2031617,2097153,2162689,2228225,2293761,2359297,2424833,2490369,2621441,2686977,2752513,2818049,2883585,2949121,3014657,3080193,3145729,3211265,3276801,3342337,3407873,3473409,3538945,3604481,3670019,3735553,3932161,3997697,4063233,4128769,4194305,4259841,4325377,4390913,4456449,4521985,4587521,4718593,4849665,4915201,4980737,5046273,5111809,5242881,5308417,5439489,5373953,5570561,5636097,5701633,5767169,5832705,5898241,5963777,6029313,6094849,6160385,6225921,6291457,6422529,6488065,6553601,6619137,6750209,6815745,6946817,7012353,7077889,7143425,7208961,7274497,7340033,7405569,7471105,7602177,7667713,7733249,7798785,7864321,7929857,7995393,8060929,8126465,8323073,8388609,8454145,8519681,8585217,8650753,8716289,8847361,8912897,8978433,9043969,9109505,9240577,9306113,9371649,9437185,9502721,9568257,9699329,9764865,9830401,10027009,10092545,10158081,10223617,10289153,10354689,10485761,10551297,10616833,10682369,10747905,10813441,10878977,10944513,11075585,11141121,11206657,11272193,11337729,11403265,11468801,11534337,11599873,11665409,11730945,11796481,11862017,11927553,11993089,12058625,12124161,12255233,12320769,12386305,12451841,12517377,12648449,12713985,12779521,12910593,12845057,13041665,13107201,13238273,13303809,13369345,13434881,13500417,13565953,13631489,13697025,13762561,13828099,13893633,13959169,14024705,14090241,14155777,14286849,14352385,14417921,14483457,14548993,14614529,14680065,14745601,14811137,14876673,14942209,15007745,15073281,15138817,15204353,15335425,15466497,15532033,15794177,15925249,15990785,16056321,16121857,16187393,16252929,16318465,16384001,16449537,16646145,16777217,16711681,16842753,16908289,16973825,17039361,17104897,17170433,17235969,17301505,17367041,17563649,17629185,17694721,17760257,17891329,17956865,18087937,18219009,18284545,18350081,18481153,18546689,18612225,18743297,18808833,18939905,19005441,19136513,19202049,19267585,19333121,19398657,19464193,19529729,19595265,19660801,19791873,19857409,19922945,19988481,20054017,20185089,20250625,20316161,20381697,20447233,20578305,20643841,20709377,20774913,20840449,20905985,20971521,21037057,21168129,21233665,21299201,21364737,21495809,21561345,21626881,21757953,21954561,22020097,22216705],"additionalstaticwebassets":[9830401,10354689,19070977],"autoreset":[458753,15990786,20185089],"asynchronyously":[262145,2752513,4980737,5505025,5767170,9043969,9633793,13762561,18677762,21233665],"address":[2621442,22282241],"addeventwheelcallback":[2293761,10420225,14155778],"aspnetcore":[393217,7602177,10354689,10747905,15073281,15138817,18612225,19398657,20971521,21037057,21168129],"addeventlistener":[8847361,12845058,18022401],"addeventdragcallback":[2293761,7143426,10420225],"addattribute":[2293761,10420225,19922946],"administrator":[22085633],"algorithm":[5701633],"addeventclipboardcallback":[2293761,10420225,15794178],"assigning":[8847361,17432577],"attributes":[4128770,5963779,9240578,10944514,15400962,17432577,20119553],"attributecollection":[327682,655362,1835011,3997698,5963778,7077890,7995394,9240578,9306116,10092546,10616834,10944518,11927554,13893634,17432577,18219010,19333122,20119555],"abstract":[1179649,19398657],"addphp":[1638401,3670018,16056321]}

Просмотреть файл

@ -1 +0,0 @@
{"box":[22282241],"blazor":[131076,65540,196613,262148,327684,393220,458753,524292,589828,655364,720900,851972,917505,983044,1048580,1114113,1179653,1245188,1310725,1376257,1441796,1507332,1572868,1638401,1703937,1769476,1835009,1900548,1966084,2031620,2097157,2162692,2228228,2293765,2359301,2424836,2490373,2555905,2621444,2686980,2752516,2818052,2883588,2949124,3014661,3080197,3145732,3211268,3276804,3342340,3407877,3473412,3538949,3604484,3670020,3735556,3801089,3866625,3932164,3997700,4063236,4128773,4194308,4259844,4325380,4390916,4456452,4521988,4587524,4653057,4718596,4784130,4849668,4915204,4980741,5046276,5111812,5177345,5242884,5308420,5439492,5505025,5373957,5570564,5636100,5701638,5767174,5832708,5898244,5963780,6029317,6094852,6160388,6225925,6291460,6356993,6422532,6488068,6553604,6619140,6684673,6750212,6815748,6881281,6946820,7012356,7077892,7143428,7208964,7274500,7340038,7405572,7471108,7536641,7602181,7667716,7733252,7798788,7864324,7929860,7995396,8060932,8126469,8192001,8257537,8323076,8388612,8454148,8519684,8585221,8650756,8716292,8781825,8847365,8912900,8978437,9043973,9109508,9175041,9240580,9306116,9371652,9437189,9502724,9568260,9633793,9699332,9764868,9830405,9895937,9961473,10027013,10092548,10158084,10223620,10289156,10354692,10420225,10485764,10551300,10616836,10682372,10747908,10813444,10878980,10944517,11010049,11075588,11141124,11206660,11272196,11337732,11403268,11468804,11534341,11599876,11665412,11730948,11796484,11862021,11927556,11993093,12058628,12124164,12189697,12255236,12320772,12386308,12451844,12517380,12582913,12648452,12713988,12779525,12910596,12845060,12976129,13041669,13107204,13172737,13238276,13303812,13369348,13434884,13500420,13565956,13631492,13697028,13762564,13828100,13893637,13959172,14024708,14090244,14155780,14221313,14286852,14352390,14417924,14483460,14548996,14614532,14680068,14745604,14811140,14876676,14942212,15007749,15073286,15138820,15204356,15269889,15335428,15400961,15466500,15532036,15597569,15663105,15728641,15794180,15859713,15925252,15990788,16056325,16121860,16187396,16252932,16318468,16384004,16449540,16515073,16580609,16646148,16777220,16711684,16842756,16908292,16973828,17039364,17104900,17170438,17235972,17301508,17367046,17432580,17498113,17563652,17629188,17694724,17760260,17825793,17891332,17956868,18022401,18087940,18153473,18219012,18284548,18350084,18415617,18481156,18546692,18612228,18677761,18743300,18808836,18874369,18939908,19005444,19070977,19136516,19202052,19267588,19333124,19398661,19464196,19529732,19595269,19660805,19726337,19791876,19857412,19922948,19988484,20054020,20119553,20185093,20250629,20316164,20381700,20447236,20512769,20578309,20643844,20709380,20774916,20840452,20905988,20971524,21037060,21102593,21168132,21233668,21299204,21364740,21430273,21495812,21561348,21626884,21692417,21757956,21823489,21889025,21954564,22020100,22151169,22216708],"base":[17432577,19398657],"browserfile":[524292,1114115,2424834,3473410,5111810,11206658,11599874,14221316,14352390,17367046,17432577,17563650],"blazorcontext":[196610,393218,1703938,3145730,3276803,4456450,5177346,5701633,5767175,6553602,8978436,10289154,10878978,12648452,13697026,13762562,15073282,15466498,16252930,17432577,17694722,17891332,18284546,18350082,18677763,19595268,19988482,21233666,21561346],"basic":[3670018,10354690,15073282],"blazorwritable":[1310721,2490369,4128769,5701634,8781827,8716290,9437185,10944513,12779523,13893633,17432577],"bool":[1507329,2621441,3997697,5636097,6029313,6815745,9699329,13303809,13631489,15990785,16121857,17170433,18808833,19136513,19857409,20381697],"basepath":[9830401,10354689,19070977],"boolean":[1507329,2621441,3997697,5636097,6029313,6815745,8585217,9699329,12582913,13303809,13631489,15990785,16121857,17170433,18808833,19136513,19857409,20381697],"buildrendertree":[1179651,10747907,18415620,19398659,19726339],"blazorwriter":[2949122,3211268,8585223,11010051,12582915,13631491,15663106,15925250,16842754,17432577,20774914,21037060,21168132,21299202],"busynavigation":[6356993,8912898,19660801],"browser":[9830401,10354689,14352385,17432577,19070977],"builder":[393219,655361,1179650,1835009,2293761,2490370,3670018,4784129,5701634,5767169,7340033,7602178,9437186,9895937,10354689,10747906,10944513,13893634,15073283,16318466,18677761,21037058,21168130]}

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,11 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>InteropUtils.CallJsVoidAsync Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="CallJsVoidAsync method" /><meta name="System.Keywords" content="InteropUtils.CallJsVoidAsync method" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.InteropUtils.CallJsVoidAsync" /><meta name="Microsoft.Help.Id" content="M:Peachpie.Blazor.InteropUtils.CallJsVoidAsync(Pchp.Core.Context,System.String,System.Object[])" /><meta name="Description" content="Call a Javascript void function by given name and parameters asynchronyously." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="03daa401-fb46-f6a9-4db4-2ff33b284912" /><meta name="guid" content="03daa401-fb46-f6a9-4db4-2ff33b284912" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/2eb87aec-a43f-4ccc-ad0c-e8ed76041f01.htm" title="InteropUtils Class" tocid="2eb87aec-a43f-4ccc-ad0c-e8ed76041f01">InteropUtils Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/64c43d67-dad8-dc0b-bf8a-92cf7fe6236c.htm" title="InteropUtils Methods" tocid="64c43d67-dad8-dc0b-bf8a-92cf7fe6236c">InteropUtils Methods</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/6fdf4e91-be52-cef8-f19b-17f19809fe47.htm" title="CallJsVoid Method " tocid="6fdf4e91-be52-cef8-f19b-17f19809fe47">CallJsVoid Method </a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/03daa401-fb46-f6a9-4db4-2ff33b284912.htm" title="CallJsVoidAsync Method " tocid="03daa401-fb46-f6a9-4db4-2ff33b284912">CallJsVoidAsync Method </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>InteropUtils<span id="LSTFD5D6BAA_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LSTFD5D6BAA_0?cpp=::|nu=.");</script>CallJsVoidAsync Method </h1></td></tr></table><span class="introStyle"></span> <div class="summary">
Call a Javascript void function by given name and parameters asynchronyously.
</div><p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="keyword">static</span> <span class="keyword">void</span> <span class="identifier">CallJsVoidAsync</span>(
<span class="identifier">Context</span> <span class="parameter">ctx</span>,
<span class="identifier">string</span> <span class="parameter">method</span>,
<span class="keyword">params</span> <span class="identifier">Object</span>[] <span class="parameter">args</span>
)</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script><h4 class="subHeading">Parameters</h4><dl><dt><span class="parameter">ctx</span></dt><dd>Type: <span class="nolink">Context</span><br /></dd><dt><span class="parameter">method</span></dt><dd>Type: <a href="https://docs.microsoft.com/dotnet/api/system.string" target="_blank" rel="noopener noreferrer">System<span id="LSTFD5D6BAA_1"></span><script type="text/javascript">AddLanguageSpecificTextSet("LSTFD5D6BAA_1?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>String</a><br /></dd><dt><span class="parameter">args</span></dt><dd>Type: <span id="LSTFD5D6BAA_2"></span><script type="text/javascript">AddLanguageSpecificTextSet("LSTFD5D6BAA_2?cpp=array&lt;");</script><a href="https://docs.microsoft.com/dotnet/api/system.object" target="_blank" rel="noopener noreferrer">System<span id="LSTFD5D6BAA_3"></span><script type="text/javascript">AddLanguageSpecificTextSet("LSTFD5D6BAA_3?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>Object</a><span id="LSTFD5D6BAA_4"></span><script type="text/javascript">AddLanguageSpecificTextSet("LSTFD5D6BAA_4?cpp=&gt;|vb=()|nu=[]");</script><br /></dd></dl></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="2eb87aec-a43f-4ccc-ad0c-e8ed76041f01.htm">InteropUtils Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,5 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>BrowserFile Constructor </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="BrowserFile class, constructor" /><meta name="System.Keywords" content="BrowserFile.BrowserFile constructor" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.BrowserFile.#ctor" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.BrowserFile.BrowserFile" /><meta name="Microsoft.Help.Id" content="M:Peachpie.Blazor.BrowserFile.#ctor" /><meta name="Description" content="Peachpie.Blazor.BrowserFile" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="065a6c22-88ca-f26f-a492-e53128d70d9b" /><meta name="guid" content="065a6c22-88ca-f26f-a492-e53128d70d9b" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/91e28a69-b22f-adfa-dcee-b030736cbb2d.htm" title="BrowserFile Class" tocid="91e28a69-b22f-adfa-dcee-b030736cbb2d">BrowserFile Class</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/065a6c22-88ca-f26f-a492-e53128d70d9b.htm" title="BrowserFile Constructor " tocid="065a6c22-88ca-f26f-a492-e53128d70d9b">BrowserFile Constructor </a></div><div class="toclevel2" data-toclevel="2"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/0d55dcc2-bef4-ad5f-374c-535e5164301b.htm" title="BrowserFile Properties" tocid="0d55dcc2-bef4-ad5f-374c-535e5164301b">BrowserFile Properties</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>BrowserFile Constructor </h1></td></tr></table><span class="introStyle"></span> <div class="summary">Initializes a new instance of the <a href="91e28a69-b22f-adfa-dcee-b030736cbb2d.htm">BrowserFile</a> class</div><p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="identifier">BrowserFile</span>()</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="91e28a69-b22f-adfa-dcee-b030736cbb2d.htm">BrowserFile Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Просмотреть файл

@ -1,7 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Timer.Start Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="Start method" /><meta name="System.Keywords" content="Timer.Start method" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.Timer.Start" /><meta name="Microsoft.Help.Id" content="M:Peachpie.Blazor.Timer.Start" /><meta name="Description" content="Timer starts to raise events." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="065e8756-55a5-81bc-50cd-d75f783a8ebb" /><meta name="guid" content="065e8756-55a5-81bc-50cd-d75f783a8ebb" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/d73c6260-9acd-fbe5-3eb6-cf9b00997d1c.htm" title="Timer Class" tocid="d73c6260-9acd-fbe5-3eb6-cf9b00997d1c">Timer Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/05f3c56d-d366-6948-42fd-1f4798d5c708.htm" title="Timer Methods" tocid="05f3c56d-d366-6948-42fd-1f4798d5c708">Timer Methods</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/c0f04228-0e4c-19fb-17bd-34b4aab80dfe.htm" title="addEventElapsed Method " tocid="c0f04228-0e4c-19fb-17bd-34b4aab80dfe">addEventElapsed Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/d9703d10-dd5c-dcab-41a5-4234fccbe53b.htm" title="AutoReset Method " tocid="d9703d10-dd5c-dcab-41a5-4234fccbe53b">AutoReset Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/abc5b41e-2592-6027-801d-9cf0ca35dd9a.htm" title="Dispose Method " tocid="abc5b41e-2592-6027-801d-9cf0ca35dd9a">Dispose Method </a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/065e8756-55a5-81bc-50cd-d75f783a8ebb.htm" title="Start Method " tocid="065e8756-55a5-81bc-50cd-d75f783a8ebb">Start Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/09e69163-0a90-1b95-28a5-887e903d3650.htm" title="Stop Method " tocid="09e69163-0a90-1b95-28a5-887e903d3650">Stop Method </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>Timer<span id="LST4822072A_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST4822072A_0?cpp=::|nu=.");</script>Start Method </h1></td></tr></table><span class="introStyle"></span> <div class="summary">
Timer starts to raise events.
</div><p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="keyword">void</span> <span class="identifier">Start</span>()</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="d73c6260-9acd-fbe5-3eb6-cf9b00997d1c.htm">Timer Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,10 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>FileUtils.CreateUrlObject Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="CreateUrlObject method" /><meta name="System.Keywords" content="FileUtils.CreateUrlObject method" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.FileUtils.CreateUrlObject" /><meta name="Microsoft.Help.Id" content="M:Peachpie.Blazor.FileUtils.CreateUrlObject(Pchp.Core.Context,System.Int32)" /><meta name="Description" content="Creates an URL object from a file specified by id and returns the URL." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="0753b1d7-ec64-b3ce-c988-2d13507ab3f8" /><meta name="guid" content="0753b1d7-ec64-b3ce-c988-2d13507ab3f8" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/7a25c2af-35c1-9400-f498-16cc7758cc55.htm" title="FileUtils Class" tocid="7a25c2af-35c1-9400-f498-16cc7758cc55">FileUtils Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/248fc82a-7cec-dd31-dd74-865fd52094cb.htm" title="FileUtils Methods" tocid="248fc82a-7cec-dd31-dd74-865fd52094cb">FileUtils Methods</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/1c79d954-4f38-b599-c5fe-7f26593a2119.htm" title="CreateFile Method " tocid="1c79d954-4f38-b599-c5fe-7f26593a2119">CreateFile Method </a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/0753b1d7-ec64-b3ce-c988-2d13507ab3f8.htm" title="CreateUrlObject Method " tocid="0753b1d7-ec64-b3ce-c988-2d13507ab3f8">CreateUrlObject Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/b9cc0962-f6d7-762a-672c-2a2005cc7c90.htm" title="DownloadFile Method " tocid="b9cc0962-f6d7-762a-672c-2a2005cc7c90">DownloadFile Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/db66a780-26ea-ea1c-c671-d21ef77880db.htm" title="GetBrowserFileContent Method " tocid="db66a780-26ea-ea1c-c671-d21ef77880db">GetBrowserFileContent Method </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>FileUtils<span id="LST47BF5CF8_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST47BF5CF8_0?cpp=::|nu=.");</script>CreateUrlObject Method </h1></td></tr></table><span class="introStyle"></span> <div class="summary">
Creates an URL object from a file specified by id and returns the URL.
</div><p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="keyword">static</span> <span class="identifier">string</span> <span class="identifier">CreateUrlObject</span>(
<span class="identifier">Context</span> <span class="parameter">ctx</span>,
<span class="identifier">int</span> <span class="parameter">id</span>
)</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script><h4 class="subHeading">Parameters</h4><dl><dt><span class="parameter">ctx</span></dt><dd>Type: <span class="nolink">Context</span><br /></dd><dt><span class="parameter">id</span></dt><dd>Type: <a href="https://docs.microsoft.com/dotnet/api/system.int32" target="_blank" rel="noopener noreferrer">System<span id="LST47BF5CF8_1"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST47BF5CF8_1?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>Int32</a><br /></dd></dl><h4 class="subHeading">Return Value</h4>Type: <a href="https://docs.microsoft.com/dotnet/api/system.string" target="_blank" rel="noopener noreferrer">String</a></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="7a25c2af-35c1-9400-f498-16cc7758cc55.htm">FileUtils Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,9 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>FileManager Methods</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="FileManager class, methods" /><meta name="Microsoft.Help.Id" content="Methods.T:Peachpie.Blazor.FileManager" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="08d9f02f-9814-2694-b795-2c1a104c8307" /><meta name="guid" content="08d9f02f-9814-2694-b795-2c1a104c8307" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/4364e3bb-0312-bc6f-0731-fd269f858f62.htm" title="FileManager Class" tocid="4364e3bb-0312-bc6f-0731-fd269f858f62">FileManager Class</a></div><div class="toclevel1 current" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/08d9f02f-9814-2694-b795-2c1a104c8307.htm" title="FileManager Methods" tocid="08d9f02f-9814-2694-b795-2c1a104c8307">FileManager Methods</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/f951f22c-f007-a2cc-90f7-34787614300f.htm" title="DownloadFilesAsync Method " tocid="f951f22c-f007-a2cc-90f7-34787614300f">DownloadFilesAsync Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/d9c921d1-b383-1173-a007-ff7cb80bc290.htm" title="FetchFiles Method " tocid="d9c921d1-b383-1173-a007-ff7cb80bc290">FetchFiles Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/8dca3263-9ed0-75c5-89f6-60e218b64a8e.htm" title="GetFileData Method " tocid="8dca3263-9ed0-75c5-89f6-60e218b64a8e">GetFileData Method </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>FileManager Methods</h1></td></tr></table><span class="introStyle"></span> <p>The <a href="4364e3bb-0312-bc6f-0731-fd269f858f62.htm">FileManager</a> type exposes the following members.</p><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID0RB')" onkeypress="SectionExpandCollapse_CheckKey('ID0RB', event)" tabindex="0"><img id="ID0RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Methods</span></div><div id="ID0RBSection" class="collapsibleSection"><table class="members" id="methodList"><tr><th class="iconColumn">
 
</th><th>Name</th><th>Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="f951f22c-f007-a2cc-90f7-34787614300f.htm">DownloadFilesAsync</a></td><td><div class="summary">
Load file contents into memory.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="d9c921d1-b383-1173-a007-ff7cb80bc290.htm">FetchFiles</a></td><td><div class="summary">
Gets uploaded files by an HTML form.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="8dca3263-9ed0-75c5-89f6-60e218b64a8e.htm">GetFileData</a></td><td><div class="summary">
Gets file content saved in memory.
</div></td></tr></table><a href="#PageHeader">Top</a></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID1RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="4364e3bb-0312-bc6f-0731-fd269f858f62.htm">FileManager Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Просмотреть файл

@ -1,15 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Text Class</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="Text class" /><meta name="System.Keywords" content="Peachpie.Blazor.Text class" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.Text" /><meta name="Microsoft.Help.Id" content="T:Peachpie.Blazor.Text" /><meta name="Description" content="The class represents a text content of web page." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="092ad1c7-13d8-d06c-1bf9-38e7619c25b9" /><meta name="guid" content="092ad1c7-13d8-d06c-1bf9-38e7619c25b9" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel1 current" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/092ad1c7-13d8-d06c-1bf9-38e7619c25b9.htm" title="Text Class" tocid="092ad1c7-13d8-d06c-1bf9-38e7619c25b9">Text Class</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/30902537-cd20-13b8-f3fd-2f33a439c663.htm" title="Text Constructor " tocid="30902537-cd20-13b8-f3fd-2f33a439c663">Text Constructor </a></div><div class="toclevel2" data-toclevel="2"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/f6108709-6262-f227-a568-803e27046cdc.htm" title="Text Methods" tocid="f6108709-6262-f227-a568-803e27046cdc">Text Methods</a></div><div class="toclevel2" data-toclevel="2"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/5f9745ce-c393-1731-d83e-3b136f98718c.htm" title="Text Type Conversions" tocid="5f9745ce-c393-1731-d83e-3b136f98718c">Text Type Conversions</a></div><div class="toclevel2" data-toclevel="2"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b255bd01-9801-62f5-f5e6-aadcf9ec6910.htm" title="Text Fields" tocid="b255bd01-9801-62f5-f5e6-aadcf9ec6910">Text Fields</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>Text Class</h1></td></tr></table><span class="introStyle"></span> <div class="summary">
The class represents a text content of web page.
</div><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID0RB')" onkeypress="SectionExpandCollapse_CheckKey('ID0RB', event)" tabindex="0"><img id="ID0RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Inheritance Hierarchy</span></div><div id="ID0RBSection" class="collapsibleSection"><a href="https://docs.microsoft.com/dotnet/api/system.object" target="_blank" rel="noopener noreferrer">System<span id="LST8EAD1469_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST8EAD1469_0?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>Object</a><br />  <span class="selflink">Peachpie.Blazor<span id="LST8EAD1469_1"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST8EAD1469_1?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>Text</span><br /></div><p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID2RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID1EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID1EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID1EACA');return false;" title="Copy">Copy</a></div></div><div id="ID1EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="keyword">class</span> <span class="identifier">Text</span> : <span class="identifier">BlazorWritable</span></pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID1EACA");</script></div><p>The <span class="selflink">Text</span> type exposes the following members.</p><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID3RB')" onkeypress="SectionExpandCollapse_CheckKey('ID3RB', event)" tabindex="0"><img id="ID3RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Constructors</span></div><div id="ID3RBSection" class="collapsibleSection"><table class="members" id="constructorList"><tr><th class="iconColumn">
 
</th><th>Name</th><th>Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="30902537-cd20-13b8-f3fd-2f33a439c663.htm">Text</a></td><td><div class="summary">Initializes a new instance of the <span class="selflink">Text</span> class</div></td></tr></table><a href="#PageHeader">Top</a></div><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID4RB')" onkeypress="SectionExpandCollapse_CheckKey('ID4RB', event)" tabindex="0"><img id="ID4RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Methods</span></div><div id="ID4RBSection" class="collapsibleSection"><table class="members" id="methodList"><tr><th class="iconColumn">
 
</th><th>Name</th><th>Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="2029bd22-d782-3c53-0934-8c4b6a1cd7ca.htm">ToString</a></td><td> (Overrides <a href="https://docs.microsoft.com/dotnet/api/system.object.tostring#System_Object_ToString" target="_blank" rel="noopener noreferrer">Object<span id="LST8EAD1469_2"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST8EAD1469_2?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>ToString<span id="LST8EAD1469_3"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST8EAD1469_3?cs=()|vb=|cpp=()|nu=()|fs=()");</script></a>.)</td></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="17ffcd8a-a0f4-3280-2754-90781a9209b2.htm">writeWithTreeBuilder</a></td><td /></tr></table><a href="#PageHeader">Top</a></div><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID5RB')" onkeypress="SectionExpandCollapse_CheckKey('ID5RB', event)" tabindex="0"><img id="ID5RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Operators</span></div><div id="ID5RBSection" class="collapsibleSection"><table class="members" id="operatorList"><tr><th class="iconColumn">
 
</th><th>Name</th><th>Description</th></tr><tr data="public;static;declared;notNetfw;"><td><img src="../icons/puboperator.gif" alt="Public operator" title="Public operator" /><img src="../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="c6dc951b-b683-0027-7f50-39370fde839f.htm"><span id="LST8EAD1469_4"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST8EAD1469_4?cs=Implicit|vb=Widening|cpp=Implicit|nu=Implicit|fs=Implicit");</script>(String to Text)</a></td><td /></tr><tr data="public;static;declared;notNetfw;"><td><img src="../icons/puboperator.gif" alt="Public operator" title="Public operator" /><img src="../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="127defa0-5774-d179-bda6-36c4e1c35cb4.htm"><span id="LST8EAD1469_5"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST8EAD1469_5?cs=Implicit|vb=Widening|cpp=Implicit|nu=Implicit|fs=Implicit");</script>(Text to String)</a></td><td /></tr></table><a href="#PageHeader">Top</a></div><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID6RB')" onkeypress="SectionExpandCollapse_CheckKey('ID6RB', event)" tabindex="0"><img id="ID6RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Fields</span></div><div id="ID6RBSection" class="collapsibleSection"><table class="members" id="fieldList"><tr><th class="iconColumn">
 
</th><th>Name</th><th>Description</th></tr><tr data="protected;declared;notNetfw;"><td><img src="../icons/protfield.gif" alt="Protected field" title="Protected field" /></td><td><a href="ed33d8c4-fa92-4310-4f8e-496afacbc5ab.htm">content</a></td><td /></tr></table><a href="#PageHeader">Top</a></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID7RB')" onkeypress="SectionExpandCollapse_CheckKey('ID7RB', event)" tabindex="0"><img id="ID7RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID7RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Просмотреть файл

@ -1,7 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Timer.Stop Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="Stop method" /><meta name="System.Keywords" content="Timer.Stop method" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.Timer.Stop" /><meta name="Microsoft.Help.Id" content="M:Peachpie.Blazor.Timer.Stop" /><meta name="Description" content="Timer stops to raise events." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="09e69163-0a90-1b95-28a5-887e903d3650" /><meta name="guid" content="09e69163-0a90-1b95-28a5-887e903d3650" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/d73c6260-9acd-fbe5-3eb6-cf9b00997d1c.htm" title="Timer Class" tocid="d73c6260-9acd-fbe5-3eb6-cf9b00997d1c">Timer Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/05f3c56d-d366-6948-42fd-1f4798d5c708.htm" title="Timer Methods" tocid="05f3c56d-d366-6948-42fd-1f4798d5c708">Timer Methods</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/c0f04228-0e4c-19fb-17bd-34b4aab80dfe.htm" title="addEventElapsed Method " tocid="c0f04228-0e4c-19fb-17bd-34b4aab80dfe">addEventElapsed Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/d9703d10-dd5c-dcab-41a5-4234fccbe53b.htm" title="AutoReset Method " tocid="d9703d10-dd5c-dcab-41a5-4234fccbe53b">AutoReset Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/abc5b41e-2592-6027-801d-9cf0ca35dd9a.htm" title="Dispose Method " tocid="abc5b41e-2592-6027-801d-9cf0ca35dd9a">Dispose Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/065e8756-55a5-81bc-50cd-d75f783a8ebb.htm" title="Start Method " tocid="065e8756-55a5-81bc-50cd-d75f783a8ebb">Start Method </a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/09e69163-0a90-1b95-28a5-887e903d3650.htm" title="Stop Method " tocid="09e69163-0a90-1b95-28a5-887e903d3650">Stop Method </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>Timer<span id="LSTCB7A09A8_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LSTCB7A09A8_0?cpp=::|nu=.");</script>Stop Method </h1></td></tr></table><span class="introStyle"></span> <div class="summary">
Timer stops to raise events.
</div><p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="keyword">void</span> <span class="identifier">Stop</span>()</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="d73c6260-9acd-fbe5-3eb6-cf9b00997d1c.htm">Timer Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Просмотреть файл

@ -1,5 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>PhpComponent Constructor </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="PhpComponent class, constructor" /><meta name="System.Keywords" content="PhpComponent.PhpComponent constructor" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.PhpComponent.#ctor" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.PhpComponent.PhpComponent" /><meta name="Microsoft.Help.Id" content="M:Peachpie.Blazor.PhpComponent.#ctor" /><meta name="Description" content="Peachpie.Blazor.PhpComponent" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="0a443cf6-617e-29b8-edc5-3729b50eca69" /><meta name="guid" content="0a443cf6-617e-29b8-edc5-3729b50eca69" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/e15bf912-0b3c-c0fb-c103-90fdfa4cf141.htm" title="PhpComponent Class" tocid="e15bf912-0b3c-c0fb-c103-90fdfa4cf141">PhpComponent Class</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/0a443cf6-617e-29b8-edc5-3729b50eca69.htm" title="PhpComponent Constructor " tocid="0a443cf6-617e-29b8-edc5-3729b50eca69">PhpComponent Constructor </a></div><div class="toclevel2" data-toclevel="2"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/bb75abab-d1f2-6019-3c35-e96955a3e7f8.htm" title="PhpComponent Properties" tocid="bb75abab-d1f2-6019-3c35-e96955a3e7f8">PhpComponent Properties</a></div><div class="toclevel2" data-toclevel="2"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/ed704624-8be1-6341-ffea-dde4d1881e3d.htm" title="PhpComponent Methods" tocid="ed704624-8be1-6341-ffea-dde4d1881e3d">PhpComponent Methods</a></div><div class="toclevel2" data-toclevel="2"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/ab0cf164-c511-a11f-c881-3136dacefbb0.htm" title="PhpComponent Fields" tocid="ab0cf164-c511-a11f-c881-3136dacefbb0">PhpComponent Fields</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>PhpComponent Constructor </h1></td></tr></table><span class="introStyle"></span> <div class="summary">Initializes a new instance of the <a href="e15bf912-0b3c-c0fb-c103-90fdfa4cf141.htm">PhpComponent</a> class</div><p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">protected</span> <span class="identifier">PhpComponent</span>()</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="e15bf912-0b3c-c0fb-c103-90fdfa4cf141.htm">PhpComponent Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Просмотреть файл

@ -1,3 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>MatchResult Methods</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="MatchResult class, methods" /><meta name="Microsoft.Help.Id" content="Methods.T:Peachpie.Blazor.MatchResult" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="0ab90bdc-3b11-ffec-4c9a-0e4c315a391b" /><meta name="guid" content="0ab90bdc-3b11-ffec-4c9a-0e4c315a391b" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/359cea19-f4a5-04c4-d42c-0e78a6b5238a.htm" title="MatchResult Class" tocid="359cea19-f4a5-04c4-d42c-0e78a6b5238a">MatchResult Class</a></div><div class="toclevel1 current" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/0ab90bdc-3b11-ffec-4c9a-0e4c315a391b.htm" title="MatchResult Methods" tocid="0ab90bdc-3b11-ffec-4c9a-0e4c315a391b">MatchResult Methods</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/169e34fc-1658-c535-ff55-4c95a002a0b0.htm" title="Match Method " tocid="169e34fc-1658-c535-ff55-4c95a002a0b0">Match Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/f77901bb-9930-dc2d-2168-32b823ed0800.htm" title="NoMatch Method " tocid="f77901bb-9930-dc2d-2168-32b823ed0800">NoMatch Method </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>MatchResult Methods</h1></td></tr></table><span class="introStyle"></span> <p>The <a href="359cea19-f4a5-04c4-d42c-0e78a6b5238a.htm">MatchResult</a> type exposes the following members.</p><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID0RB')" onkeypress="SectionExpandCollapse_CheckKey('ID0RB', event)" tabindex="0"><img id="ID0RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Methods</span></div><div id="ID0RBSection" class="collapsibleSection"><table class="members" id="methodList"><tr><th class="iconColumn">
 
</th><th>Name</th><th>Description</th></tr><tr data="public;static;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="169e34fc-1658-c535-ff55-4c95a002a0b0.htm">Match</a></td><td /></tr><tr data="public;static;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="f77901bb-9930-dc2d-2168-32b823ed0800.htm">NoMatch</a></td><td /></tr></table><a href="#PageHeader">Top</a></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID1RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="359cea19-f4a5-04c4-d42c-0e78a6b5238a.htm">MatchResult Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Просмотреть файл

@ -1,7 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>PhpComponent.BuildRenderTree Method (PhpTreeBuilder)</title><meta name="Language" content="en-us" /><meta name="Microsoft.Help.Id" content="M:Peachpie.Blazor.PhpComponent.BuildRenderTree(Peachpie.Blazor.PhpTreeBuilder)" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="0b3dc7a9-7df3-b15e-72ba-730ad75d35b7" /><meta name="guid" content="0b3dc7a9-7df3-b15e-72ba-730ad75d35b7" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/e15bf912-0b3c-c0fb-c103-90fdfa4cf141.htm" title="PhpComponent Class" tocid="e15bf912-0b3c-c0fb-c103-90fdfa4cf141">PhpComponent Class</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/ed704624-8be1-6341-ffea-dde4d1881e3d.htm" title="PhpComponent Methods" tocid="ed704624-8be1-6341-ffea-dde4d1881e3d">PhpComponent Methods</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/dade2ef9-f791-012d-1806-34b357400ed2.htm" title="BuildRenderTree Method " tocid="dade2ef9-f791-012d-1806-34b357400ed2">BuildRenderTree Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/596fea93-0fe1-a8f5-d0ba-19ea1f9c9f01.htm" title="BuildRenderTree Method (RenderTreeBuilder)" tocid="596fea93-0fe1-a8f5-d0ba-19ea1f9c9f01">BuildRenderTree Method (RenderTreeBuilder)</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/0b3dc7a9-7df3-b15e-72ba-730ad75d35b7.htm" title="BuildRenderTree Method (PhpTreeBuilder)" tocid="0b3dc7a9-7df3-b15e-72ba-730ad75d35b7">BuildRenderTree Method (PhpTreeBuilder)</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>PhpComponent<span id="LST7D93DA04_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST7D93DA04_0?cpp=::|nu=.");</script>BuildRenderTree Method (PhpTreeBuilder)</h1></td></tr></table><span class="introStyle"></span> <p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">protected</span> <span class="keyword">abstract</span> <span class="keyword">void</span> <span class="identifier">BuildRenderTree</span>(
<span class="identifier">PhpTreeBuilder</span> <span class="parameter">builder</span>
)</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script><h4 class="subHeading">Parameters</h4><dl><dt><span class="parameter">builder</span></dt><dd>Type: <a href="140bc2a8-2a41-0774-5745-85190b5edcc7.htm">Peachpie.Blazor<span id="LST7D93DA04_1"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST7D93DA04_1?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>PhpTreeBuilder</a><br /></dd></dl></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="e15bf912-0b3c-c0fb-c103-90fdfa4cf141.htm">PhpComponent Class</a></div><div class="seeAlsoStyle"><a href="dade2ef9-f791-012d-1806-34b357400ed2.htm">BuildRenderTree Overload</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,3 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>BrowserFile Properties</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="BrowserFile class, properties" /><meta name="Microsoft.Help.Id" content="Properties.T:Peachpie.Blazor.BrowserFile" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="0d55dcc2-bef4-ad5f-374c-535e5164301b" /><meta name="guid" content="0d55dcc2-bef4-ad5f-374c-535e5164301b" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/91e28a69-b22f-adfa-dcee-b030736cbb2d.htm" title="BrowserFile Class" tocid="91e28a69-b22f-adfa-dcee-b030736cbb2d">BrowserFile Class</a></div><div class="toclevel1 current" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/0d55dcc2-bef4-ad5f-374c-535e5164301b.htm" title="BrowserFile Properties" tocid="0d55dcc2-bef4-ad5f-374c-535e5164301b">BrowserFile Properties</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/8c44304e-039e-3332-9343-b0a56991c300.htm" title="id Property " tocid="8c44304e-039e-3332-9343-b0a56991c300">id Property </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/8c5bac27-8dc5-fc1d-9fb7-fa98b5a035d5.htm" title="name Property " tocid="8c5bac27-8dc5-fc1d-9fb7-fa98b5a035d5">name Property </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/1858c8d4-73bc-648f-5fb0-f338e0809c2b.htm" title="size Property " tocid="1858c8d4-73bc-648f-5fb0-f338e0809c2b">size Property </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/cdb5c859-4ac2-ea5d-f19d-35108008fe2c.htm" title="type Property " tocid="cdb5c859-4ac2-ea5d-f19d-35108008fe2c">type Property </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>BrowserFile Properties</h1></td></tr></table><span class="introStyle"></span> <p>The <a href="91e28a69-b22f-adfa-dcee-b030736cbb2d.htm">BrowserFile</a> type exposes the following members.</p><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID0RB')" onkeypress="SectionExpandCollapse_CheckKey('ID0RB', event)" tabindex="0"><img id="ID0RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Properties</span></div><div id="ID0RBSection" class="collapsibleSection"><table class="members" id="propertyList"><tr><th class="iconColumn">
 
</th><th>Name</th><th>Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="8c44304e-039e-3332-9343-b0a56991c300.htm">id</a></td><td /></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="8c5bac27-8dc5-fc1d-9fb7-fa98b5a035d5.htm">name</a></td><td /></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="1858c8d4-73bc-648f-5fb0-f338e0809c2b.htm">size</a></td><td /></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="cdb5c859-4ac2-ea5d-f19d-35108008fe2c.htm">type</a></td><td /></tr></table><a href="#PageHeader">Top</a></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID1RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="91e28a69-b22f-adfa-dcee-b030736cbb2d.htm">BrowserFile Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,18 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>PhpScriptProvider Class</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="PhpScriptProvider class" /><meta name="System.Keywords" content="Peachpie.Blazor.PhpScriptProvider class" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.PhpScriptProvider" /><meta name="Microsoft.Help.Id" content="T:Peachpie.Blazor.PhpScriptProvider" /><meta name="Description" content="The class provides PHP script and PHP components navigation and evaluation." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="0ecbfd85-ef5b-4754-23cb-49d3d074cf18" /><meta name="guid" content="0ecbfd85-ef5b-4754-23cb-49d3d074cf18" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel1 current" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/0ecbfd85-ef5b-4754-23cb-49d3d074cf18.htm" title="PhpScriptProvider Class" tocid="0ecbfd85-ef5b-4754-23cb-49d3d074cf18">PhpScriptProvider Class</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/5e1fc03d-d893-02f5-98e6-6b4b6e8fb5fd.htm" title="PhpScriptProvider Constructor " tocid="5e1fc03d-d893-02f5-98e6-6b4b6e8fb5fd">PhpScriptProvider Constructor </a></div><div class="toclevel2" data-toclevel="2"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/e9d23803-74ad-2ba8-cb4e-a7f125b60237.htm" title="PhpScriptProvider Properties" tocid="e9d23803-74ad-2ba8-cb4e-a7f125b60237">PhpScriptProvider Properties</a></div><div class="toclevel2" data-toclevel="2"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/e39f484d-70cb-9dce-23dc-026ff631bf2d.htm" title="PhpScriptProvider Methods" tocid="e39f484d-70cb-9dce-23dc-026ff631bf2d">PhpScriptProvider Methods</a></div><div class="toclevel2" data-toclevel="2"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/19bff2b1-2ea7-c948-0047-7c31ff25da2a.htm" title="PhpScriptProvider Fields" tocid="19bff2b1-2ea7-c948-0047-7c31ff25da2a">PhpScriptProvider Fields</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>PhpScriptProvider Class</h1></td></tr></table><span class="introStyle"></span> <div class="summary">
The class provides PHP script and PHP components navigation and evaluation.
</div><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID0RB')" onkeypress="SectionExpandCollapse_CheckKey('ID0RB', event)" tabindex="0"><img id="ID0RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Inheritance Hierarchy</span></div><div id="ID0RBSection" class="collapsibleSection"><a href="https://docs.microsoft.com/dotnet/api/system.object" target="_blank" rel="noopener noreferrer">System<span id="LST358B26EA_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST358B26EA_0?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>Object</a><br />  <span class="selflink">Peachpie.Blazor<span id="LST358B26EA_1"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST358B26EA_1?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>PhpScriptProvider</span><br /></div><p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID2RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID1EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID1EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID1EACA');return false;" title="Copy">Copy</a></div></div><div id="ID1EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="keyword">class</span> <span class="identifier">PhpScriptProvider</span> : <span class="identifier">IComponent</span>,
<span class="identifier">IHandleAfterRender</span>, <span class="identifier">IDisposable</span></pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID1EACA");</script></div><p>The <span class="selflink">PhpScriptProvider</span> type exposes the following members.</p><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID3RB')" onkeypress="SectionExpandCollapse_CheckKey('ID3RB', event)" tabindex="0"><img id="ID3RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Constructors</span></div><div id="ID3RBSection" class="collapsibleSection"><table class="members" id="constructorList"><tr><th class="iconColumn">
 
</th><th>Name</th><th>Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="5e1fc03d-d893-02f5-98e6-6b4b6e8fb5fd.htm">PhpScriptProvider</a></td><td><div class="summary">Initializes a new instance of the <span class="selflink">PhpScriptProvider</span> class</div></td></tr></table><a href="#PageHeader">Top</a></div><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID4RB')" onkeypress="SectionExpandCollapse_CheckKey('ID4RB', event)" tabindex="0"><img id="ID4RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Properties</span></div><div id="ID4RBSection" class="collapsibleSection"><table class="members" id="propertyList"><tr><th class="iconColumn">
 
</th><th>Name</th><th>Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="c8dc7ddd-24b5-df5a-d427-5063e3101c90.htm">ContextLifetime</a></td><td /></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="10edfd9f-6e23-1e07-6677-96d56acff1d2.htm">Js</a></td><td /></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="9e38772b-4114-7d5c-dc6f-0bd2780e13ed.htm">LoggerFactory</a></td><td /></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="b4575e86-bc5d-8040-0c72-6c49ccf82bdc.htm">Navigating</a></td><td /></tr><tr data="private;declared;notNetfw;"><td><img src="../icons/privproperty.gif" alt="Private property" title="Private property" /></td><td><a href="19099e7e-7cce-80be-e856-51fbf71e5fff.htm">NavigationInterception</a></td><td /></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="93d9d0a0-aaa2-447d-c401-4dfd3bf9373c.htm">NavigationManager</a></td><td /></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="8218a6b8-e93c-12b2-ee6a-971809572c30.htm">NotFound</a></td><td /></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="fde5c23b-23c0-9b29-0158-4bf222c23780.htm">PhpService</a></td><td /></tr><tr data="private;declared;notNetfw;"><td><img src="../icons/privproperty.gif" alt="Private property" title="Private property" /></td><td><a href="e11299cb-e3fa-4ba6-a88a-e78ec9a7b957.htm">RouteManager</a></td><td /></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="2f64b2f8-f84c-0444-5e76-70be2914a2e2.htm">ScriptName</a></td><td /></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="29b6ed0a-8da0-ed9c-9176-7c3a54a35692.htm">Type</a></td><td /></tr></table><a href="#PageHeader">Top</a></div><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID5RB')" onkeypress="SectionExpandCollapse_CheckKey('ID5RB', event)" tabindex="0"><img id="ID5RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Methods</span></div><div id="ID5RBSection" class="collapsibleSection"><table class="members" id="methodList"><tr><th class="iconColumn">
 
</th><th>Name</th><th>Description</th></tr><tr data="private;declared;notNetfw;"><td><img src="../icons/privmethod.gif" alt="Private method" title="Private method" /></td><td><a href="97c9e448-816e-bfa7-cdf1-bcd70ffd5c0e.htm">OnLocationChanged</a></td><td /></tr><tr data="private;declared;notNetfw;"><td><img src="../icons/privmethod.gif" alt="Private method" title="Private method" /></td><td><a href="036b8058-6e70-ae0c-a0a4-2699b55c53f7.htm">Refresh</a></td><td /></tr><tr data="private;declared;notNetfw;"><td><img src="../icons/privmethod.gif" alt="Private method" title="Private method" /></td><td><a href="519a643a-9331-bf6c-db20-da011bb57495.htm">Render</a></td><td /></tr></table><a href="#PageHeader">Top</a></div><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID6RB')" onkeypress="SectionExpandCollapse_CheckKey('ID6RB', event)" tabindex="0"><img id="ID6RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Fields</span></div><div id="ID6RBSection" class="collapsibleSection"><table class="members" id="fieldList"><tr><th class="iconColumn">
 
</th><th>Name</th><th>Description</th></tr><tr data="private;declared;notNetfw;"><td><img src="../icons/privfield.gif" alt="Private field" title="Private field" /></td><td><a href="1ddd5d37-b0da-0ac0-d3b1-df972b06e205.htm">_ctx</a></td><td /></tr><tr data="private;declared;notNetfw;"><td><img src="../icons/privfield.gif" alt="Private field" title="Private field" /></td><td><a href="d7454168-5cfb-dada-8067-9fc7d2068160.htm">_disposed</a></td><td /></tr><tr data="private;declared;notNetfw;"><td><img src="../icons/privfield.gif" alt="Private field" title="Private field" /></td><td><a href="c0608b67-2d8d-a7b7-8712-db752bd3e81c.htm">_firstRendering</a></td><td /></tr><tr data="private;declared;notNetfw;"><td><img src="../icons/privfield.gif" alt="Private field" title="Private field" /></td><td><a href="d2d47a06-4c74-2e89-0354-761cbb6d1ec6.htm">_logger</a></td><td /></tr><tr data="private;declared;notNetfw;"><td><img src="../icons/privfield.gif" alt="Private field" title="Private field" /></td><td><a href="02139eb8-2e11-a491-fd16-4f922636ebed.htm">_module</a></td><td /></tr><tr data="private;declared;notNetfw;"><td><img src="../icons/privfield.gif" alt="Private field" title="Private field" /></td><td><a href="dae4c2a0-6093-b13d-c21e-03e4e655a5f9.htm">_navigationInterceptionEnabled</a></td><td /></tr><tr data="private;declared;notNetfw;"><td><img src="../icons/privfield.gif" alt="Private field" title="Private field" /></td><td><a href="64965fc9-5029-36a0-5a01-eba274a37ae2.htm">_renderHandle</a></td><td /></tr></table><a href="#PageHeader">Top</a></div><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID7RB')" onkeypress="SectionExpandCollapse_CheckKey('ID7RB', event)" tabindex="0"><img id="ID7RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Explicit Interface Implementations</span></div><div id="ID7RBSection" class="collapsibleSection"><table class="members" id="explicitInterfaceImplementationList"><tr><th class="iconColumn">
 
</th><th>Name</th><th>Description</th></tr><tr data="explicit;declared;notNetfw;"><td><img src="../icons/pubinterface.gif" alt="Explicit interface implementation" title="Explicit interface implementation" /><img src="../icons/privmethod.gif" alt="Private method" title="Private method" /></td><td><a href="fba2f54a-afb2-a1e1-5f31-adc12d270e82.htm">IComponent<span id="LST358B26EA_2"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST358B26EA_2?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>Attach</a></td><td /></tr><tr data="explicit;declared;notNetfw;"><td><img src="../icons/pubinterface.gif" alt="Explicit interface implementation" title="Explicit interface implementation" /><img src="../icons/privmethod.gif" alt="Private method" title="Private method" /></td><td><a href="0e3cc136-0087-5358-ef3b-803ac0c6a36b.htm">IDisposable<span id="LST358B26EA_3"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST358B26EA_3?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>Dispose</a></td><td /></tr><tr data="explicit;declared;notNetfw;"><td><img src="../icons/pubinterface.gif" alt="Explicit interface implementation" title="Explicit interface implementation" /><img src="../icons/privmethod.gif" alt="Private method" title="Private method" /></td><td><a href="79748d07-8c3b-3116-ee0f-060fa3a02819.htm">IHandleAfterRender<span id="LST358B26EA_4"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST358B26EA_4?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>OnAfterRenderAsync</a></td><td /></tr><tr data="explicit;declared;notNetfw;"><td><img src="../icons/pubinterface.gif" alt="Explicit interface implementation" title="Explicit interface implementation" /><img src="../icons/privmethod.gif" alt="Private method" title="Private method" /></td><td><a href="d058d380-2b2d-eee4-97cd-521499a9c5a4.htm">IComponent<span id="LST358B26EA_5"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST358B26EA_5?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>SetParametersAsync</a></td><td /></tr></table><a href="#PageHeader">Top</a></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID8RB')" onkeypress="SectionExpandCollapse_CheckKey('ID8RB', event)" tabindex="0"><img id="ID8RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID8RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,5 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>PHPService.InitializePHPAsync Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="InitializePHPAsync method" /><meta name="System.Keywords" content="PHPService.InitializePHPAsync method" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.PHPService.InitializePHPAsync" /><meta name="Microsoft.Help.Id" content="M:Peachpie.Blazor.PHPService.InitializePHPAsync" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="11482d2c-78be-4581-0ac1-a3737662061f" /><meta name="guid" content="11482d2c-78be-4581-0ac1-a3737662061f" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/5964ee52-bd5a-8336-7883-4218afa3af7c.htm" title="PHPService Class" tocid="5964ee52-bd5a-8336-7883-4218afa3af7c">PHPService Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b4bbe754-20e3-51d5-1ec3-464cb0f346ed.htm" title="PHPService Methods" tocid="b4bbe754-20e3-51d5-1ec3-464cb0f346ed">PHPService Methods</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/b41e0842-d3d2-1e14-2c79-e0485802affe.htm" title="Dispose Method " tocid="b41e0842-d3d2-1e14-2c79-e0485802affe">Dispose Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/1bcf3476-6f89-4872-5e54-927004a24585.htm" title="GetModule Method " tocid="1bcf3476-6f89-4872-5e54-927004a24585">GetModule Method </a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/11482d2c-78be-4581-0ac1-a3737662061f.htm" title="InitializePHPAsync Method " tocid="11482d2c-78be-4581-0ac1-a3737662061f">InitializePHPAsync Method </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>PHPService<span id="LST666D0277_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST666D0277_0?cpp=::|nu=.");</script>InitializePHPAsync Method </h1></td></tr></table><span class="introStyle"></span> <p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="identifier">Task</span> <span class="identifier">InitializePHPAsync</span>()</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script><h4 class="subHeading">Return Value</h4>Type: <a href="https://docs.microsoft.com/dotnet/api/system.threading.tasks.task" target="_blank" rel="noopener noreferrer">Task</a><h4 class="subHeading">Implements</h4><a href="ea2ae6a2-92f1-7229-3716-5745b538be8f.htm">IPHPService<span id="LST666D0277_1"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST666D0277_1?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>InitializePHPAsync<span id="LST666D0277_2"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST666D0277_2?cs=()|vb=|cpp=()|nu=()|fs=()");</script></a><br /></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="5964ee52-bd5a-8336-7883-4218afa3af7c.htm">PHPService Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,5 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>WebAssemblyHostBuilderExtensions Methods</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="WebAssemblyHostBuilderExtensions class, methods" /><meta name="Microsoft.Help.Id" content="Methods.T:Peachpie.Blazor.WebAssemblyHostBuilderExtensions" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="1185c53f-a455-fad9-62df-97a649556271" /><meta name="guid" content="1185c53f-a455-fad9-62df-97a649556271" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b0836608-02a7-f98f-003d-8e6e369bf253.htm" title="WebAssemblyHostBuilderExtensions Class" tocid="b0836608-02a7-f98f-003d-8e6e369bf253">WebAssemblyHostBuilderExtensions Class</a></div><div class="toclevel1 current" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/1185c53f-a455-fad9-62df-97a649556271.htm" title="WebAssemblyHostBuilderExtensions Methods" tocid="1185c53f-a455-fad9-62df-97a649556271">WebAssemblyHostBuilderExtensions Methods</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/22bcbb7c-89fc-2926-d156-adcc02ffe172.htm" title="AddPhp Method " tocid="22bcbb7c-89fc-2926-d156-adcc02ffe172">AddPhp Method </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>WebAssemblyHostBuilderExtensions Methods</h1></td></tr></table><span class="introStyle"></span> <p>The <a href="b0836608-02a7-f98f-003d-8e6e369bf253.htm">WebAssemblyHostBuilderExtensions</a> type exposes the following members.</p><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID0RB')" onkeypress="SectionExpandCollapse_CheckKey('ID0RB', event)" tabindex="0"><img id="ID0RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Methods</span></div><div id="ID0RBSection" class="collapsibleSection"><table class="members" id="methodList"><tr><th class="iconColumn">
 
</th><th>Name</th><th>Description</th></tr><tr data="public;static;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="22bcbb7c-89fc-2926-d156-adcc02ffe172.htm">AddPhp</a></td><td><div class="summary">
Adds a PHP service providing PHP component navigation.
</div></td></tr></table><a href="#PageHeader">Top</a></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID1RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="b0836608-02a7-f98f-003d-8e6e369bf253.htm">WebAssemblyHostBuilderExtensions Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Просмотреть файл

@ -1,7 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Tag.__construct Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="__construct method" /><meta name="System.Keywords" content="Tag.__construct method" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.Tag.__construct" /><meta name="Microsoft.Help.Id" content="M:Peachpie.Blazor.Tag.__construct(System.String)" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="122d2bd2-fa24-0d84-b748-9e3a70300525" /><meta name="guid" content="122d2bd2-fa24-0d84-b748-9e3a70300525" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/2471856b-fbf3-97be-3aaa-4cc327f41d14.htm" title="Tag Class" tocid="2471856b-fbf3-97be-3aaa-4cc327f41d14">Tag Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/ff8c40aa-d0e1-020a-f67f-fbaa261f4cae.htm" title="Tag Methods" tocid="ff8c40aa-d0e1-020a-f67f-fbaa261f4cae">Tag Methods</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/122d2bd2-fa24-0d84-b748-9e3a70300525.htm" title="__construct Method " tocid="122d2bd2-fa24-0d84-b748-9e3a70300525">__construct Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/9f5cbf3f-4f23-48b2-a43f-8d81a36f6275.htm" title="ToString Method " tocid="9f5cbf3f-4f23-48b2-a43f-8d81a36f6275">ToString Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/5f1331c5-6a00-881b-5ba9-bd628fd3351d.htm" title="writeWithTreeBuilder Method " tocid="5f1331c5-6a00-881b-5ba9-bd628fd3351d">writeWithTreeBuilder Method </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>Tag<span id="LST50FF3B96_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST50FF3B96_0?cpp=::|nu=.");</script>__construct Method </h1></td></tr></table><span class="introStyle"></span> <p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="keyword">void</span> <span class="identifier">__construct</span>(
<span class="identifier">string</span> <span class="parameter">name</span>
)</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script><h4 class="subHeading">Parameters</h4><dl><dt><span class="parameter">name</span></dt><dd>Type: <a href="https://docs.microsoft.com/dotnet/api/system.string" target="_blank" rel="noopener noreferrer">System<span id="LST50FF3B96_1"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST50FF3B96_1?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>String</a><br /></dd></dl></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="2471856b-fbf3-97be-3aaa-4cc327f41d14.htm">Tag Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Просмотреть файл

@ -1,9 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>ClassBuilder.add Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="add method" /><meta name="System.Keywords" content="ClassBuilder.add method" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.ClassBuilder.add" /><meta name="Microsoft.Help.Id" content="M:Peachpie.Blazor.ClassBuilder.add(System.String)" /><meta name="Description" content="Adds the class name to the collection." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="124dd83c-3168-2488-00c7-a9dcc82a1706" /><meta name="guid" content="124dd83c-3168-2488-00c7-a9dcc82a1706" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/933dcd64-4995-bab0-fea0-334fffa9001b.htm" title="ClassBuilder Class" tocid="933dcd64-4995-bab0-fea0-334fffa9001b">ClassBuilder Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b894b082-ea1c-7269-d8d3-723e112fcb90.htm" title="ClassBuilder Methods" tocid="b894b082-ea1c-7269-d8d3-723e112fcb90">ClassBuilder Methods</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/124dd83c-3168-2488-00c7-a9dcc82a1706.htm" title="add Method " tocid="124dd83c-3168-2488-00c7-a9dcc82a1706">add Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/6ca9dda2-a461-9a4f-5b11-c65f2ac716c9.htm" title="remove Method " tocid="6ca9dda2-a461-9a4f-5b11-c65f2ac716c9">remove Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/a02b1924-f32a-3e34-8d89-81ade3da9eb3.htm" title="ToString Method " tocid="a02b1924-f32a-3e34-8d89-81ade3da9eb3">ToString Method </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>ClassBuilder<span id="LSTEAA4818C_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LSTEAA4818C_0?cpp=::|nu=.");</script>add Method </h1></td></tr></table><span class="introStyle"></span> <div class="summary">
Adds the class name to the collection.
</div><p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="keyword">void</span> <span class="identifier">add</span>(
<span class="identifier">string</span> <span class="parameter">class</span>
)</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script><h4 class="subHeading">Parameters</h4><dl><dt><span class="parameter">class</span></dt><dd>Type: <a href="https://docs.microsoft.com/dotnet/api/system.string" target="_blank" rel="noopener noreferrer">System<span id="LSTEAA4818C_1"></span><script type="text/javascript">AddLanguageSpecificTextSet("LSTEAA4818C_1?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>String</a><br /></dd></dl></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="933dcd64-4995-bab0-fea0-334fffa9001b.htm">ClassBuilder Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Просмотреть файл

@ -1,7 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Text Implicit Conversion (Text to String)</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="Text to String conversion" /><meta name="Microsoft.Help.Id" content="M:Peachpie.Blazor.Text.op_Implicit(Peachpie.Blazor.Text)~System.String" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="127defa0-5774-d179-bda6-36c4e1c35cb4" /><meta name="guid" content="127defa0-5774-d179-bda6-36c4e1c35cb4" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/092ad1c7-13d8-d06c-1bf9-38e7619c25b9.htm" title="Text Class" tocid="092ad1c7-13d8-d06c-1bf9-38e7619c25b9">Text Class</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/5f9745ce-c393-1731-d83e-3b136f98718c.htm" title="Text Type Conversions" tocid="5f9745ce-c393-1731-d83e-3b136f98718c">Text Type Conversions</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/f07f97c9-e3ee-6f14-553a-174c73a6c1ea.htm" title="Implicit Conversion Operators" tocid="f07f97c9-e3ee-6f14-553a-174c73a6c1ea">Implicit Conversion Operators</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/c6dc951b-b683-0027-7f50-39370fde839f.htm" title="Implicit Conversion (String to Text)" tocid="c6dc951b-b683-0027-7f50-39370fde839f">Implicit Conversion (String to Text)</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/127defa0-5774-d179-bda6-36c4e1c35cb4.htm" title="Implicit Conversion (Text to String)" tocid="127defa0-5774-d179-bda6-36c4e1c35cb4">Implicit Conversion (Text to String)</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>Text <span id="LST65E37C41_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST65E37C41_0?vb=Widening|nu=Implicit");</script> Conversion (Text to String)</h1></td></tr></table><span class="introStyle"></span> <p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="keyword">static</span> <span class="keyword">implicit operator</span> <span class="identifier">string</span> (
<span class="identifier">Text</span> <span class="parameter">text</span>
)</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script><h4 class="subHeading">Parameters</h4><dl><dt><span class="parameter">text</span></dt><dd>Type: <a href="092ad1c7-13d8-d06c-1bf9-38e7619c25b9.htm">Peachpie.Blazor<span id="LST65E37C41_1"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST65E37C41_1?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>Text</a><br /></dd></dl><h4 class="subHeading">Return Value</h4>Type: <a href="https://docs.microsoft.com/dotnet/api/system.string" target="_blank" rel="noopener noreferrer">String</a></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="092ad1c7-13d8-d06c-1bf9-38e7619c25b9.htm">Text Class</a></div><div class="seeAlsoStyle"><a href="f07f97c9-e3ee-6f14-553a-174c73a6c1ea.htm"><span id="LST65E37C41_2"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST65E37C41_2?cs=Implicit|vb=Widening|cpp=Implicit|nu=Implicit|fs=Implicit");</script> Overload</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,8 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>FileManager Constructor </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="FileManager class, constructor" /><meta name="System.Keywords" content="FileManager.FileManager constructor" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.FileManager.#ctor" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.FileManager.FileManager" /><meta name="Microsoft.Help.Id" content="M:Peachpie.Blazor.FileManager.#ctor(Peachpie.Blazor.IPHPService,Microsoft.Extensions.Logging.ILoggerFactory)" /><meta name="Description" content="Peachpie.Blazor.FileManager" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="15b66901-e40b-2aed-7485-e4b1dda867c0" /><meta name="guid" content="15b66901-e40b-2aed-7485-e4b1dda867c0" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/4364e3bb-0312-bc6f-0731-fd269f858f62.htm" title="FileManager Class" tocid="4364e3bb-0312-bc6f-0731-fd269f858f62">FileManager Class</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/15b66901-e40b-2aed-7485-e4b1dda867c0.htm" title="FileManager Constructor " tocid="15b66901-e40b-2aed-7485-e4b1dda867c0">FileManager Constructor </a></div><div class="toclevel2" data-toclevel="2"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/08d9f02f-9814-2694-b795-2c1a104c8307.htm" title="FileManager Methods" tocid="08d9f02f-9814-2694-b795-2c1a104c8307">FileManager Methods</a></div><div class="toclevel2" data-toclevel="2"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/e888e216-56d4-12f1-aa83-e82fd36b765f.htm" title="FileManager Fields" tocid="e888e216-56d4-12f1-aa83-e82fd36b765f">FileManager Fields</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>FileManager Constructor </h1></td></tr></table><span class="introStyle"></span> <div class="summary">Initializes a new instance of the <a href="4364e3bb-0312-bc6f-0731-fd269f858f62.htm">FileManager</a> class</div><p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="identifier">FileManager</span>(
<span class="identifier">IPHPService</span> <span class="parameter">phpService</span>,
<span class="identifier">ILoggerFactory</span> <span class="parameter">factory</span>
)</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script><h4 class="subHeading">Parameters</h4><dl><dt><span class="parameter">phpService</span></dt><dd>Type: <a href="844c6e1f-cb4b-457b-38ea-9e65538314f9.htm">Peachpie.Blazor<span id="LST714584B_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST714584B_0?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>IPHPService</a><br /></dd><dt><span class="parameter">factory</span></dt><dd>Type: <a href="https://docs.microsoft.com/dotnet/api/microsoft.extensions.logging.iloggerfactory" target="_blank" rel="noopener noreferrer">Microsoft.Extensions.Logging<span id="LST714584B_1"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST714584B_1?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>ILoggerFactory</a><br /></dd></dl></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="4364e3bb-0312-bc6f-0731-fd269f858f62.htm">FileManager Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Просмотреть файл

@ -1,7 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>MatchResult.Match Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="Match method" /><meta name="System.Keywords" content="MatchResult.Match method" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.MatchResult.Match" /><meta name="Microsoft.Help.Id" content="M:Peachpie.Blazor.MatchResult.Match(Peachpie.Blazor.Route)" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="169e34fc-1658-c535-ff55-4c95a002a0b0" /><meta name="guid" content="169e34fc-1658-c535-ff55-4c95a002a0b0" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/359cea19-f4a5-04c4-d42c-0e78a6b5238a.htm" title="MatchResult Class" tocid="359cea19-f4a5-04c4-d42c-0e78a6b5238a">MatchResult Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/0ab90bdc-3b11-ffec-4c9a-0e4c315a391b.htm" title="MatchResult Methods" tocid="0ab90bdc-3b11-ffec-4c9a-0e4c315a391b">MatchResult Methods</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/169e34fc-1658-c535-ff55-4c95a002a0b0.htm" title="Match Method " tocid="169e34fc-1658-c535-ff55-4c95a002a0b0">Match Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/f77901bb-9930-dc2d-2168-32b823ed0800.htm" title="NoMatch Method " tocid="f77901bb-9930-dc2d-2168-32b823ed0800">NoMatch Method </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>MatchResult<span id="LSTAC46D7BE_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LSTAC46D7BE_0?cpp=::|nu=.");</script>Match Method </h1></td></tr></table><span class="introStyle"></span> <p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="keyword">static</span> <span class="identifier">MatchResult</span> <span class="identifier">Match</span>(
<span class="identifier">Route</span> <span class="parameter">matchedRoute</span>
)</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script><h4 class="subHeading">Parameters</h4><dl><dt><span class="parameter">matchedRoute</span></dt><dd>Type: <a href="7985ed87-9297-3b4f-34eb-6030ea112c1f.htm">Peachpie.Blazor<span id="LSTAC46D7BE_1"></span><script type="text/javascript">AddLanguageSpecificTextSet("LSTAC46D7BE_1?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>Route</a><br /></dd></dl><h4 class="subHeading">Return Value</h4>Type: <a href="359cea19-f4a5-04c4-d42c-0e78a6b5238a.htm">MatchResult</a></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="359cea19-f4a5-04c4-d42c-0e78a6b5238a.htm">MatchResult Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,9 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Text.writeWithTreeBuilder Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="writeWithTreeBuilder method" /><meta name="System.Keywords" content="Text.writeWithTreeBuilder method" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.Text.writeWithTreeBuilder" /><meta name="Microsoft.Help.Id" content="M:Peachpie.Blazor.Text.writeWithTreeBuilder(Pchp.Core.Context,Peachpie.Blazor.PhpTreeBuilder,System.Int32)" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="17ffcd8a-a0f4-3280-2754-90781a9209b2" /><meta name="guid" content="17ffcd8a-a0f4-3280-2754-90781a9209b2" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/092ad1c7-13d8-d06c-1bf9-38e7619c25b9.htm" title="Text Class" tocid="092ad1c7-13d8-d06c-1bf9-38e7619c25b9">Text Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/f6108709-6262-f227-a568-803e27046cdc.htm" title="Text Methods" tocid="f6108709-6262-f227-a568-803e27046cdc">Text Methods</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/2029bd22-d782-3c53-0934-8c4b6a1cd7ca.htm" title="ToString Method " tocid="2029bd22-d782-3c53-0934-8c4b6a1cd7ca">ToString Method </a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/17ffcd8a-a0f4-3280-2754-90781a9209b2.htm" title="writeWithTreeBuilder Method " tocid="17ffcd8a-a0f4-3280-2754-90781a9209b2">writeWithTreeBuilder Method </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>Text<span id="LST49FC0CF4_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST49FC0CF4_0?cpp=::|nu=.");</script>writeWithTreeBuilder Method </h1></td></tr></table><span class="introStyle"></span> <p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="identifier">int</span> <span class="identifier">writeWithTreeBuilder</span>(
<span class="identifier">Context</span> <span class="parameter">ctx</span>,
<span class="identifier">PhpTreeBuilder</span> <span class="parameter">builder</span>,
<span class="identifier">int</span> <span class="parameter">startIndex</span>
)</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script><h4 class="subHeading">Parameters</h4><dl><dt><span class="parameter">ctx</span></dt><dd>Type: <span class="nolink">Context</span><br /></dd><dt><span class="parameter">builder</span></dt><dd>Type: <a href="140bc2a8-2a41-0774-5745-85190b5edcc7.htm">Peachpie.Blazor<span id="LST49FC0CF4_1"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST49FC0CF4_1?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>PhpTreeBuilder</a><br /></dd><dt><span class="parameter">startIndex</span></dt><dd>Type: <a href="https://docs.microsoft.com/dotnet/api/system.int32" target="_blank" rel="noopener noreferrer">System<span id="LST49FC0CF4_2"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST49FC0CF4_2?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>Int32</a><br /></dd></dl><h4 class="subHeading">Return Value</h4>Type: <a href="https://docs.microsoft.com/dotnet/api/system.int32" target="_blank" rel="noopener noreferrer">Int32</a><h4 class="subHeading">Implements</h4><a href="3abd2f9b-2000-a04b-a9b0-aeab05f0be2c.htm">BlazorWritable<span id="LST49FC0CF4_3"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST49FC0CF4_3?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>writeWithTreeBuilder(Context, PhpTreeBuilder, Int32)</a><br /></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="092ad1c7-13d8-d06c-1bf9-38e7619c25b9.htm">Text Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Просмотреть файл

@ -1,5 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>BlazorWriter.CreateConsole Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="CreateConsole method" /><meta name="System.Keywords" content="BlazorWriter.CreateConsole method" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.BlazorWriter.CreateConsole" /><meta name="Microsoft.Help.Id" content="M:Peachpie.Blazor.BlazorWriter.CreateConsole" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="1840a4e9-46c2-1764-e4e7-36db19ac78e1" /><meta name="guid" content="1840a4e9-46c2-1764-e4e7-36db19ac78e1" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/572707d2-a315-4c73-1505-cc9736347d37.htm" title="BlazorWriter Class" tocid="572707d2-a315-4c73-1505-cc9736347d37">BlazorWriter Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/82c2d943-8f2f-d368-94e3-74ff12d35644.htm" title="BlazorWriter Methods" tocid="82c2d943-8f2f-d368-94e3-74ff12d35644">BlazorWriter Methods</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/1840a4e9-46c2-1764-e4e7-36db19ac78e1.htm" title="CreateConsole Method " tocid="1840a4e9-46c2-1764-e4e7-36db19ac78e1">CreateConsole Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/ba663614-cea6-8611-606d-5d04a6724625.htm" title="CreateTree Method " tocid="ba663614-cea6-8611-606d-5d04a6724625">CreateTree Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/9d4a3ef9-7f85-2bfc-319e-3760e0ff6b4c.htm" title="Dispose Method " tocid="9d4a3ef9-7f85-2bfc-319e-3760e0ff6b4c">Dispose Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/e6103205-8795-e7da-8448-b9f5e0b8d77f.htm" title="Flush Method " tocid="e6103205-8795-e7da-8448-b9f5e0b8d77f">Flush Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/a57e80fe-1a1e-de1f-83ca-45805ddbd808.htm" title="Write Method " tocid="a57e80fe-1a1e-de1f-83ca-45805ddbd808">Write Method </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>BlazorWriter<span id="LSTFCF8D032_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LSTFCF8D032_0?cpp=::|nu=.");</script>CreateConsole Method </h1></td></tr></table><span class="introStyle"></span> <p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="keyword">static</span> <span class="identifier">BlazorWriter</span> <span class="identifier">CreateConsole</span>()</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script><h4 class="subHeading">Return Value</h4>Type: <a href="572707d2-a315-4c73-1505-cc9736347d37.htm">BlazorWriter</a></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="572707d2-a315-4c73-1505-cc9736347d37.htm">BlazorWriter Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Просмотреть файл

@ -1,5 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>BrowserFile.size Property </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="size property" /><meta name="System.Keywords" content="BrowserFile.size property" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.BrowserFile.size" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.BrowserFile.get_size" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.BrowserFile.set_size" /><meta name="Microsoft.Help.Id" content="P:Peachpie.Blazor.BrowserFile.size" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="1858c8d4-73bc-648f-5fb0-f338e0809c2b" /><meta name="guid" content="1858c8d4-73bc-648f-5fb0-f338e0809c2b" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/91e28a69-b22f-adfa-dcee-b030736cbb2d.htm" title="BrowserFile Class" tocid="91e28a69-b22f-adfa-dcee-b030736cbb2d">BrowserFile Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/0d55dcc2-bef4-ad5f-374c-535e5164301b.htm" title="BrowserFile Properties" tocid="0d55dcc2-bef4-ad5f-374c-535e5164301b">BrowserFile Properties</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/8c44304e-039e-3332-9343-b0a56991c300.htm" title="id Property " tocid="8c44304e-039e-3332-9343-b0a56991c300">id Property </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/8c5bac27-8dc5-fc1d-9fb7-fa98b5a035d5.htm" title="name Property " tocid="8c5bac27-8dc5-fc1d-9fb7-fa98b5a035d5">name Property </a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/1858c8d4-73bc-648f-5fb0-f338e0809c2b.htm" title="size Property " tocid="1858c8d4-73bc-648f-5fb0-f338e0809c2b">size Property </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/cdb5c859-4ac2-ea5d-f19d-35108008fe2c.htm" title="type Property " tocid="cdb5c859-4ac2-ea5d-f19d-35108008fe2c">type Property </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>BrowserFile<span id="LST3FA20DEC_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST3FA20DEC_0?cpp=::|nu=.");</script>size Property </h1></td></tr></table><span class="introStyle"></span> <p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="identifier">int</span> <span class="identifier">size</span> { <span class="keyword">get</span>; <span class="keyword">set</span>; }</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script><h4 class="subHeading">Property Value</h4>Type: <a href="https://docs.microsoft.com/dotnet/api/system.int32" target="_blank" rel="noopener noreferrer">Int32</a></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="91e28a69-b22f-adfa-dcee-b030736cbb2d.htm">BrowserFile Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,5 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>BlazorWriter.Encoding Property </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="Encoding property" /><meta name="System.Keywords" content="BlazorWriter.Encoding property" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.BlazorWriter.Encoding" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.BlazorWriter.get_Encoding" /><meta name="Microsoft.Help.Id" content="P:Peachpie.Blazor.BlazorWriter.Encoding" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="1a4d8f07-0012-68e4-c6bc-f82508a4d1b7" /><meta name="guid" content="1a4d8f07-0012-68e4-c6bc-f82508a4d1b7" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/572707d2-a315-4c73-1505-cc9736347d37.htm" title="BlazorWriter Class" tocid="572707d2-a315-4c73-1505-cc9736347d37">BlazorWriter Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/83328656-9f4c-a5fe-bbde-83b9db674581.htm" title="BlazorWriter Properties" tocid="83328656-9f4c-a5fe-bbde-83b9db674581">BlazorWriter Properties</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/1a4d8f07-0012-68e4-c6bc-f82508a4d1b7.htm" title="Encoding Property " tocid="1a4d8f07-0012-68e4-c6bc-f82508a4d1b7">Encoding Property </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>BlazorWriter<span id="LST9B9B315B_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST9B9B315B_0?cpp=::|nu=.");</script>Encoding Property </h1></td></tr></table><span class="introStyle"></span> <p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="keyword">override</span> <span class="identifier">Encoding</span> <span class="identifier">Encoding</span> { <span class="keyword">get</span>; }</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script><h4 class="subHeading">Property Value</h4>Type: <a href="https://docs.microsoft.com/dotnet/api/system.text.encoding" target="_blank" rel="noopener noreferrer">Encoding</a></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="572707d2-a315-4c73-1505-cc9736347d37.htm">BlazorWriter Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,5 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>PHPService._phpModule Field</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="_phpModule field" /><meta name="System.Keywords" content="PHPService._phpModule field" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.PHPService._phpModule" /><meta name="Microsoft.Help.Id" content="F:Peachpie.Blazor.PHPService._phpModule" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="1b4020b2-156c-96f9-f9be-c965bfae0744" /><meta name="guid" content="1b4020b2-156c-96f9-f9be-c965bfae0744" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/5964ee52-bd5a-8336-7883-4218afa3af7c.htm" title="PHPService Class" tocid="5964ee52-bd5a-8336-7883-4218afa3af7c">PHPService Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/5350ae04-f8bb-7258-a036-61a975f79ce8.htm" title="PHPService Fields" tocid="5350ae04-f8bb-7258-a036-61a975f79ce8">PHPService Fields</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/9d956d89-1d02-0ab4-a2f5-95155d26d776.htm" title="_jsRuntime Field" tocid="9d956d89-1d02-0ab4-a2f5-95155d26d776">_jsRuntime Field</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/1b4020b2-156c-96f9-f9be-c965bfae0744.htm" title="_phpModule Field" tocid="1b4020b2-156c-96f9-f9be-c965bfae0744">_phpModule Field</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>PHPService<span id="LSTF06ED2DD_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LSTF06ED2DD_0?cpp=::|nu=.");</script>_phpModule Field</h1></td></tr></table><span class="introStyle"></span> <p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">private</span> <span class="identifier">PHPModule</span> <span class="identifier">_phpModule</span></pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script><h4 class="subHeading">Field Value</h4>Type: <a href="a74b72ff-6967-c8f8-98f4-652fc5adedf5.htm">PHPModule</a></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="5964ee52-bd5a-8336-7883-4218afa3af7c.htm">PHPService Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Просмотреть файл

@ -1,5 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>PHPService.GetModule Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="GetModule method" /><meta name="System.Keywords" content="PHPService.GetModule method" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.PHPService.GetModule" /><meta name="Microsoft.Help.Id" content="M:Peachpie.Blazor.PHPService.GetModule" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="1bcf3476-6f89-4872-5e54-927004a24585" /><meta name="guid" content="1bcf3476-6f89-4872-5e54-927004a24585" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/5964ee52-bd5a-8336-7883-4218afa3af7c.htm" title="PHPService Class" tocid="5964ee52-bd5a-8336-7883-4218afa3af7c">PHPService Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b4bbe754-20e3-51d5-1ec3-464cb0f346ed.htm" title="PHPService Methods" tocid="b4bbe754-20e3-51d5-1ec3-464cb0f346ed">PHPService Methods</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/b41e0842-d3d2-1e14-2c79-e0485802affe.htm" title="Dispose Method " tocid="b41e0842-d3d2-1e14-2c79-e0485802affe">Dispose Method </a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/1bcf3476-6f89-4872-5e54-927004a24585.htm" title="GetModule Method " tocid="1bcf3476-6f89-4872-5e54-927004a24585">GetModule Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/11482d2c-78be-4581-0ac1-a3737662061f.htm" title="InitializePHPAsync Method " tocid="11482d2c-78be-4581-0ac1-a3737662061f">InitializePHPAsync Method </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>PHPService<span id="LST4CDFE735_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST4CDFE735_0?cpp=::|nu=.");</script>GetModule Method </h1></td></tr></table><span class="introStyle"></span> <p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="identifier">PHPModule</span> <span class="identifier">GetModule</span>()</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script><h4 class="subHeading">Return Value</h4>Type: <a href="a74b72ff-6967-c8f8-98f4-652fc5adedf5.htm">PHPModule</a><h4 class="subHeading">Implements</h4><a href="4e392b31-0bc3-3683-096d-cc7338a853ab.htm">IPHPService<span id="LST4CDFE735_1"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST4CDFE735_1?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>GetModule<span id="LST4CDFE735_2"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST4CDFE735_2?cs=()|vb=|cpp=()|nu=()|fs=()");</script></a><br /></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="5964ee52-bd5a-8336-7883-4218afa3af7c.htm">PHPService Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Просмотреть файл

@ -1,12 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>FileUtils.CreateFile Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="CreateFile method" /><meta name="System.Keywords" content="FileUtils.CreateFile method" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.FileUtils.CreateFile" /><meta name="Microsoft.Help.Id" content="M:Peachpie.Blazor.FileUtils.CreateFile(Pchp.Core.Context,System.String,System.String,System.String)" /><meta name="Description" content="Creates a file with the given content and type and returns information about it." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="1c79d954-4f38-b599-c5fe-7f26593a2119" /><meta name="guid" content="1c79d954-4f38-b599-c5fe-7f26593a2119" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/7a25c2af-35c1-9400-f498-16cc7758cc55.htm" title="FileUtils Class" tocid="7a25c2af-35c1-9400-f498-16cc7758cc55">FileUtils Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/248fc82a-7cec-dd31-dd74-865fd52094cb.htm" title="FileUtils Methods" tocid="248fc82a-7cec-dd31-dd74-865fd52094cb">FileUtils Methods</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/1c79d954-4f38-b599-c5fe-7f26593a2119.htm" title="CreateFile Method " tocid="1c79d954-4f38-b599-c5fe-7f26593a2119">CreateFile Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/0753b1d7-ec64-b3ce-c988-2d13507ab3f8.htm" title="CreateUrlObject Method " tocid="0753b1d7-ec64-b3ce-c988-2d13507ab3f8">CreateUrlObject Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/b9cc0962-f6d7-762a-672c-2a2005cc7c90.htm" title="DownloadFile Method " tocid="b9cc0962-f6d7-762a-672c-2a2005cc7c90">DownloadFile Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/db66a780-26ea-ea1c-c671-d21ef77880db.htm" title="GetBrowserFileContent Method " tocid="db66a780-26ea-ea1c-c671-d21ef77880db">GetBrowserFileContent Method </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>FileUtils<span id="LST6B763BAD_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST6B763BAD_0?cpp=::|nu=.");</script>CreateFile Method </h1></td></tr></table><span class="introStyle"></span> <div class="summary">
Creates a file with the given content and type and returns information about it.
</div><p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="keyword">static</span> <span class="identifier">BrowserFile</span> <span class="identifier">CreateFile</span>(
<span class="identifier">Context</span> <span class="parameter">ctx</span>,
<span class="identifier">string</span> <span class="parameter">data</span>,
<span class="identifier">string</span> <span class="parameter">name</span>,
<span class="identifier">string</span> <span class="parameter">contentType</span>
)</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script><h4 class="subHeading">Parameters</h4><dl><dt><span class="parameter">ctx</span></dt><dd>Type: <span class="nolink">Context</span><br /></dd><dt><span class="parameter">data</span></dt><dd>Type: <a href="https://docs.microsoft.com/dotnet/api/system.string" target="_blank" rel="noopener noreferrer">System<span id="LST6B763BAD_1"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST6B763BAD_1?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>String</a><br /></dd><dt><span class="parameter">name</span></dt><dd>Type: <a href="https://docs.microsoft.com/dotnet/api/system.string" target="_blank" rel="noopener noreferrer">System<span id="LST6B763BAD_2"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST6B763BAD_2?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>String</a><br /></dd><dt><span class="parameter">contentType</span></dt><dd>Type: <a href="https://docs.microsoft.com/dotnet/api/system.string" target="_blank" rel="noopener noreferrer">System<span id="LST6B763BAD_3"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST6B763BAD_3?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>String</a><br /></dd></dl><h4 class="subHeading">Return Value</h4>Type: <a href="91e28a69-b22f-adfa-dcee-b030736cbb2d.htm">BrowserFile</a></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="7a25c2af-35c1-9400-f498-16cc7758cc55.htm">FileUtils Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,7 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>RouteData.Handler Property </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="Handler property" /><meta name="System.Keywords" content="RouteData.Handler property" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.RouteData.Handler" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.RouteData.get_Handler" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.RouteData.set_Handler" /><meta name="Microsoft.Help.Id" content="P:Peachpie.Blazor.RouteData.Handler" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="1de22cd6-2a2c-1b18-08e1-334bb6e3ebbe" /><meta name="guid" content="1de22cd6-2a2c-1b18-08e1-334bb6e3ebbe" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/652784b2-3ee6-fda9-855f-5698c5db0dba.htm" title="RouteData Structure" tocid="652784b2-3ee6-fda9-855f-5698c5db0dba">RouteData Structure</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/3044da29-5bcc-7c49-b6f6-590811057fbd.htm" title="RouteData Properties" tocid="3044da29-5bcc-7c49-b6f6-590811057fbd">RouteData Properties</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/1de22cd6-2a2c-1b18-08e1-334bb6e3ebbe.htm" title="Handler Property " tocid="1de22cd6-2a2c-1b18-08e1-334bb6e3ebbe">Handler Property </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/8eb226e0-3cba-42a2-7fd4-541350c64184.htm" title="Parameters Property " tocid="8eb226e0-3cba-42a2-7fd4-541350c64184">Parameters Property </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>RouteData<span id="LST9F7F649C_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST9F7F649C_0?cpp=::|nu=.");</script>Handler Property </h1></td></tr></table><span class="introStyle"></span> <p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="identifier">Type</span> <span class="identifier">Handler</span> {
<span class="keyword">get</span>;
<span class="keyword">private</span> <span class="keyword">set</span>; }</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script><h4 class="subHeading">Property Value</h4>Type: <a href="https://docs.microsoft.com/dotnet/api/system.type" target="_blank" rel="noopener noreferrer">Type</a></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="652784b2-3ee6-fda9-855f-5698c5db0dba.htm">RouteData Structure</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,5 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Text.ToString Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="ToString method" /><meta name="System.Keywords" content="Text.ToString method" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.Text.ToString" /><meta name="Microsoft.Help.Id" content="M:Peachpie.Blazor.Text.ToString" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="2029bd22-d782-3c53-0934-8c4b6a1cd7ca" /><meta name="guid" content="2029bd22-d782-3c53-0934-8c4b6a1cd7ca" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/092ad1c7-13d8-d06c-1bf9-38e7619c25b9.htm" title="Text Class" tocid="092ad1c7-13d8-d06c-1bf9-38e7619c25b9">Text Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/f6108709-6262-f227-a568-803e27046cdc.htm" title="Text Methods" tocid="f6108709-6262-f227-a568-803e27046cdc">Text Methods</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/2029bd22-d782-3c53-0934-8c4b6a1cd7ca.htm" title="ToString Method " tocid="2029bd22-d782-3c53-0934-8c4b6a1cd7ca">ToString Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/17ffcd8a-a0f4-3280-2754-90781a9209b2.htm" title="writeWithTreeBuilder Method " tocid="17ffcd8a-a0f4-3280-2754-90781a9209b2">writeWithTreeBuilder Method </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>Text<span id="LST484D9781_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST484D9781_0?cpp=::|nu=.");</script>ToString Method </h1></td></tr></table><span class="introStyle"></span> <p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="keyword">override</span> <span class="identifier">string</span> <span class="identifier">ToString</span>()</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script><h4 class="subHeading">Return Value</h4>Type: <a href="https://docs.microsoft.com/dotnet/api/system.string" target="_blank" rel="noopener noreferrer">String</a></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="092ad1c7-13d8-d06c-1bf9-38e7619c25b9.htm">Text Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Просмотреть файл

@ -1,10 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>WebAssemblyHostBuilderExtensions.AddPhp Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="AddPhp method" /><meta name="System.Keywords" content="WebAssemblyHostBuilderExtensions.AddPhp method" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.WebAssemblyHostBuilderExtensions.AddPhp" /><meta name="Microsoft.Help.Id" content="M:Peachpie.Blazor.WebAssemblyHostBuilderExtensions.AddPhp(Microsoft.AspNetCore.Components.WebAssembly.Hosting.WebAssemblyHostBuilder,System.Reflection.Assembly[])" /><meta name="Description" content="Adds a PHP service providing PHP component navigation." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="22bcbb7c-89fc-2926-d156-adcc02ffe172" /><meta name="guid" content="22bcbb7c-89fc-2926-d156-adcc02ffe172" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b0836608-02a7-f98f-003d-8e6e369bf253.htm" title="WebAssemblyHostBuilderExtensions Class" tocid="b0836608-02a7-f98f-003d-8e6e369bf253">WebAssemblyHostBuilderExtensions Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/1185c53f-a455-fad9-62df-97a649556271.htm" title="WebAssemblyHostBuilderExtensions Methods" tocid="1185c53f-a455-fad9-62df-97a649556271">WebAssemblyHostBuilderExtensions Methods</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/22bcbb7c-89fc-2926-d156-adcc02ffe172.htm" title="AddPhp Method " tocid="22bcbb7c-89fc-2926-d156-adcc02ffe172">AddPhp Method </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>WebAssemblyHostBuilderExtensions<span id="LST13B37FAA_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST13B37FAA_0?cpp=::|nu=.");</script>AddPhp Method </h1></td></tr></table><span class="introStyle"></span> <div class="summary">
Adds a PHP service providing PHP component navigation.
</div><p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="keyword">static</span> <span class="keyword">void</span> <span class="identifier">AddPhp</span>(
<span class="keyword">this</span> <span class="identifier">WebAssemblyHostBuilder</span> <span class="parameter">builder</span>,
<span class="identifier">Assembly</span>[] <span class="parameter">assemblies</span>
)</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script><h4 class="subHeading">Parameters</h4><dl><dt><span class="parameter">builder</span></dt><dd>Type: <a href="https://docs.microsoft.com/dotnet/api/microsoft.aspnetcore.components.webassembly.hosting.webassemblyhostbuilder" target="_blank" rel="noopener noreferrer">WebAssemblyHostBuilder</a><br /></dd><dt><span class="parameter">assemblies</span></dt><dd>Type: <span id="LST13B37FAA_1"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST13B37FAA_1?cpp=array&lt;");</script><a href="https://docs.microsoft.com/dotnet/api/system.reflection.assembly" target="_blank" rel="noopener noreferrer">System.Reflection<span id="LST13B37FAA_2"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST13B37FAA_2?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>Assembly</a><span id="LST13B37FAA_3"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST13B37FAA_3?cpp=&gt;|vb=()|nu=[]");</script><br /></dd></dl><h4 class="subHeading">Usage Note</h4>In Visual Basic and C#, you can call this method as an instance method on any object of type <a href="https://docs.microsoft.com/dotnet/api/microsoft.aspnetcore.components.webassembly.hosting.webassemblyhostbuilder" target="_blank" rel="noopener noreferrer">WebAssemblyHostBuilder</a>. When you use instance method syntax to call this method, omit the first parameter. For more information, see <a href="https://docs.microsoft.com/dotnet/visual-basic/programming-guide/language-features/procedures/extension-methods" target="_blank" rel="noopener noreferrer">Extension Methods (Visual Basic)</a> or <a href="https://docs.microsoft.com/dotnet/csharp/programming-guide/classes-and-structs/extension-methods" target="_blank" rel="noopener noreferrer">Extension Methods (C# Programming Guide)</a>.</div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="b0836608-02a7-f98f-003d-8e6e369bf253.htm">WebAssemblyHostBuilderExtensions Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Просмотреть файл

@ -1,5 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Log Constructor </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="Log class, constructor" /><meta name="System.Keywords" content="Log.Log constructor" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.Log.#ctor" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.Log.Log" /><meta name="Microsoft.Help.Id" content="M:Peachpie.Blazor.Log.#cctor" /><meta name="Description" content="Peachpie.Blazor.Log" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="23e099be-80a5-e14b-5738-99db717a854c" /><meta name="guid" content="23e099be-80a5-e14b-5738-99db717a854c" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/f1aca1bd-0bf9-b70a-4441-d81c025695af.htm" title="Log Class" tocid="f1aca1bd-0bf9-b70a-4441-d81c025695af">Log Class</a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/23e099be-80a5-e14b-5738-99db717a854c.htm" title="Log Constructor " tocid="23e099be-80a5-e14b-5738-99db717a854c">Log Constructor </a></div><div class="toclevel2" data-toclevel="2"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/49ecc0f0-1300-b5b7-4f2d-8f4455c3a88f.htm" title="Log Methods" tocid="49ecc0f0-1300-b5b7-4f2d-8f4455c3a88f">Log Methods</a></div><div class="toclevel2" data-toclevel="2"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/437f621b-18fc-6cc7-d19c-b04897a39eaa.htm" title="Log Fields" tocid="437f621b-18fc-6cc7-d19c-b04897a39eaa">Log Fields</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>Log Constructor </h1></td></tr></table><span class="introStyle"></span> <div class="summary">Initializes the static fields of the <a href="f1aca1bd-0bf9-b70a-4441-d81c025695af.htm">Log</a> class</div><p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">static</span> <span class="identifier">Log</span>()</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="f1aca1bd-0bf9-b70a-4441-d81c025695af.htm">Log Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Просмотреть файл

@ -1,13 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>PhpComponentRouteManager Class</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="PhpComponentRouteManager class" /><meta name="System.Keywords" content="Peachpie.Blazor.PhpComponentRouteManager class" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.PhpComponentRouteManager" /><meta name="Microsoft.Help.Id" content="T:Peachpie.Blazor.PhpComponentRouteManager" /><meta name="Description" content="The class finds all components defined in PHP scripts." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="245596c8-b440-599b-c2b0-55475aee0d46" /><meta name="guid" content="245596c8-b440-599b-c2b0-55475aee0d46" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel1 current" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/245596c8-b440-599b-c2b0-55475aee0d46.htm" title="PhpComponentRouteManager Class" tocid="245596c8-b440-599b-c2b0-55475aee0d46">PhpComponentRouteManager Class</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/9031ba19-497e-3668-d854-72068cce37ea.htm" title="PhpComponentRouteManager Constructor " tocid="9031ba19-497e-3668-d854-72068cce37ea">PhpComponentRouteManager Constructor </a></div><div class="toclevel2" data-toclevel="2"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/68268f8d-d77f-8caa-ec32-3e4e6a295f11.htm" title="PhpComponentRouteManager Properties" tocid="68268f8d-d77f-8caa-ec32-3e4e6a295f11">PhpComponentRouteManager Properties</a></div><div class="toclevel2" data-toclevel="2"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/ba8daacd-d8c4-9a31-b2ba-4ea6cfa11a9a.htm" title="PhpComponentRouteManager Methods" tocid="ba8daacd-d8c4-9a31-b2ba-4ea6cfa11a9a">PhpComponentRouteManager Methods</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>PhpComponentRouteManager Class</h1></td></tr></table><span class="introStyle"></span> <div class="summary">
The class finds all components defined in PHP scripts.
</div><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID0RB')" onkeypress="SectionExpandCollapse_CheckKey('ID0RB', event)" tabindex="0"><img id="ID0RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Inheritance Hierarchy</span></div><div id="ID0RBSection" class="collapsibleSection"><a href="https://docs.microsoft.com/dotnet/api/system.object" target="_blank" rel="noopener noreferrer">System<span id="LSTB44C4FB2_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LSTB44C4FB2_0?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>Object</a><br />  <span class="selflink">Peachpie.Blazor<span id="LSTB44C4FB2_1"></span><script type="text/javascript">AddLanguageSpecificTextSet("LSTB44C4FB2_1?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>PhpComponentRouteManager</span><br /></div><p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID2RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID1EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID1EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID1EACA');return false;" title="Copy">Copy</a></div></div><div id="ID1EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="keyword">class</span> <span class="identifier">PhpComponentRouteManager</span></pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID1EACA");</script></div><p>The <span class="selflink">PhpComponentRouteManager</span> type exposes the following members.</p><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID3RB')" onkeypress="SectionExpandCollapse_CheckKey('ID3RB', event)" tabindex="0"><img id="ID3RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Constructors</span></div><div id="ID3RBSection" class="collapsibleSection"><table class="members" id="constructorList"><tr><th class="iconColumn">
 
</th><th>Name</th><th>Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="9031ba19-497e-3668-d854-72068cce37ea.htm">PhpComponentRouteManager</a></td><td><div class="summary">Initializes a new instance of the <span class="selflink">PhpComponentRouteManager</span> class</div></td></tr></table><a href="#PageHeader">Top</a></div><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID4RB')" onkeypress="SectionExpandCollapse_CheckKey('ID4RB', event)" tabindex="0"><img id="ID4RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Properties</span></div><div id="ID4RBSection" class="collapsibleSection"><table class="members" id="propertyList"><tr><th class="iconColumn">
 
</th><th>Name</th><th>Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubproperty.gif" alt="Public property" title="Public property" /></td><td><a href="6daf62a6-dd54-8201-0a9d-a1b4cd9143dd.htm">Routes</a></td><td /></tr></table><a href="#PageHeader">Top</a></div><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID5RB')" onkeypress="SectionExpandCollapse_CheckKey('ID5RB', event)" tabindex="0"><img id="ID5RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Methods</span></div><div id="ID5RBSection" class="collapsibleSection"><table class="members" id="methodList"><tr><th class="iconColumn">
 
</th><th>Name</th><th>Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="9f31f24e-17f1-d778-315f-adb719f6c9ff.htm">Match</a></td><td /></tr></table><a href="#PageHeader">Top</a></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID6RB')" onkeypress="SectionExpandCollapse_CheckKey('ID6RB', event)" tabindex="0"><img id="ID6RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID6RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Просмотреть файл

@ -1,19 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Tag Class</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="Tag class" /><meta name="System.Keywords" content="Peachpie.Blazor.Tag class" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.Tag" /><meta name="Microsoft.Help.Id" content="T:Peachpie.Blazor.Tag" /><meta name="Description" content="The class represents an HTML tag." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="2471856b-fbf3-97be-3aaa-4cc327f41d14" /><meta name="guid" content="2471856b-fbf3-97be-3aaa-4cc327f41d14" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel1 current" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/2471856b-fbf3-97be-3aaa-4cc327f41d14.htm" title="Tag Class" tocid="2471856b-fbf3-97be-3aaa-4cc327f41d14">Tag Class</a></div><div class="toclevel2" data-toclevel="2"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/aba1090c-2871-de79-6281-2d5f244dafb1.htm" title="Tag Constructor " tocid="aba1090c-2871-de79-6281-2d5f244dafb1">Tag Constructor </a></div><div class="toclevel2" data-toclevel="2"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/ff8c40aa-d0e1-020a-f67f-fbaa261f4cae.htm" title="Tag Methods" tocid="ff8c40aa-d0e1-020a-f67f-fbaa261f4cae">Tag Methods</a></div><div class="toclevel2" data-toclevel="2"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/a4b4f1b1-06ba-88fe-2573-7a4cfbbf9f84.htm" title="Tag Fields" tocid="a4b4f1b1-06ba-88fe-2573-7a4cfbbf9f84">Tag Fields</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>Tag Class</h1></td></tr></table><span class="introStyle"></span> <div class="summary">
The class represents an HTML tag.
</div><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID0RB')" onkeypress="SectionExpandCollapse_CheckKey('ID0RB', event)" tabindex="0"><img id="ID0RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Inheritance Hierarchy</span></div><div id="ID0RBSection" class="collapsibleSection"><a href="https://docs.microsoft.com/dotnet/api/system.object" target="_blank" rel="noopener noreferrer">System<span id="LST60A51484_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST60A51484_0?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>Object</a><br />  <span class="selflink">Peachpie.Blazor<span id="LST60A51484_1"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST60A51484_1?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>Tag</span><br /></div><p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID2RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID1EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID1EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID1EACA');return false;" title="Copy">Copy</a></div></div><div id="ID1EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="keyword">class</span> <span class="identifier">Tag</span> : <span class="identifier">BlazorWritable</span></pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID1EACA");</script></div><p>The <span class="selflink">Tag</span> type exposes the following members.</p><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID3RB')" onkeypress="SectionExpandCollapse_CheckKey('ID3RB', event)" tabindex="0"><img id="ID3RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Constructors</span></div><div id="ID3RBSection" class="collapsibleSection"><table class="members" id="constructorList"><tr><th class="iconColumn">
 
</th><th>Name</th><th>Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="31930141-bf6a-d976-201d-c3c5af778b99.htm">Tag<span id="LST60A51484_2"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST60A51484_2?cs=()|vb=|cpp=()|nu=()|fs=()");</script></a></td><td><div class="summary">Initializes a new instance of the <span class="selflink">Tag</span> class</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="a3fb8425-db7e-f815-d568-e52405e031d8.htm">Tag(String)</a></td><td><div class="summary">Initializes a new instance of the <span class="selflink">Tag</span> class</div></td></tr></table><a href="#PageHeader">Top</a></div><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID4RB')" onkeypress="SectionExpandCollapse_CheckKey('ID4RB', event)" tabindex="0"><img id="ID4RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Methods</span></div><div id="ID4RBSection" class="collapsibleSection"><table class="members" id="methodList"><tr><th class="iconColumn">
 
</th><th>Name</th><th>Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="122d2bd2-fa24-0d84-b748-9e3a70300525.htm">__construct</a></td><td /></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="9f5cbf3f-4f23-48b2-a43f-8d81a36f6275.htm">ToString</a></td><td> (Overrides <a href="https://docs.microsoft.com/dotnet/api/system.object.tostring#System_Object_ToString" target="_blank" rel="noopener noreferrer">Object<span id="LST60A51484_3"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST60A51484_3?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>ToString<span id="LST60A51484_4"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST60A51484_4?cs=()|vb=|cpp=()|nu=()|fs=()");</script></a>.)</td></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /></td><td><a href="5f1331c5-6a00-881b-5ba9-bd628fd3351d.htm">writeWithTreeBuilder</a></td><td /></tr></table><a href="#PageHeader">Top</a></div><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID5RB')" onkeypress="SectionExpandCollapse_CheckKey('ID5RB', event)" tabindex="0"><img id="ID5RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Fields</span></div><div id="ID5RBSection" class="collapsibleSection"><table class="members" id="fieldList"><tr><th class="iconColumn">
 
</th><th>Name</th><th>Description</th></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubfield.gif" alt="Public field" title="Public field" /></td><td><a href="38264408-0359-676e-4af7-17dcc8741c42.htm">attributes</a></td><td><div class="summary">
Tag attributes
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubfield.gif" alt="Public field" title="Public field" /></td><td><a href="692fa9d4-bfff-7d1d-70a8-a775d5d15a84.htm">content</a></td><td><div class="summary">
Tag content represented as a collection of children.
</div></td></tr><tr data="public;declared;notNetfw;"><td><img src="../icons/pubfield.gif" alt="Public field" title="Public field" /></td><td><a href="cce9ba27-4334-eb49-322e-21a0c2e38a46.htm">name</a></td><td><div class="summary">
The name of tag.
</div></td></tr></table><a href="#PageHeader">Top</a></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID6RB')" onkeypress="SectionExpandCollapse_CheckKey('ID6RB', event)" tabindex="0"><img id="ID6RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID6RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Просмотреть файл

@ -1,11 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>FileUtils Methods</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="FileUtils class, methods" /><meta name="Microsoft.Help.Id" content="Methods.T:Peachpie.Blazor.FileUtils" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="248fc82a-7cec-dd31-dd74-865fd52094cb" /><meta name="guid" content="248fc82a-7cec-dd31-dd74-865fd52094cb" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/7a25c2af-35c1-9400-f498-16cc7758cc55.htm" title="FileUtils Class" tocid="7a25c2af-35c1-9400-f498-16cc7758cc55">FileUtils Class</a></div><div class="toclevel1 current" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/248fc82a-7cec-dd31-dd74-865fd52094cb.htm" title="FileUtils Methods" tocid="248fc82a-7cec-dd31-dd74-865fd52094cb">FileUtils Methods</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/1c79d954-4f38-b599-c5fe-7f26593a2119.htm" title="CreateFile Method " tocid="1c79d954-4f38-b599-c5fe-7f26593a2119">CreateFile Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/0753b1d7-ec64-b3ce-c988-2d13507ab3f8.htm" title="CreateUrlObject Method " tocid="0753b1d7-ec64-b3ce-c988-2d13507ab3f8">CreateUrlObject Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/b9cc0962-f6d7-762a-672c-2a2005cc7c90.htm" title="DownloadFile Method " tocid="b9cc0962-f6d7-762a-672c-2a2005cc7c90">DownloadFile Method </a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/db66a780-26ea-ea1c-c671-d21ef77880db.htm" title="GetBrowserFileContent Method " tocid="db66a780-26ea-ea1c-c671-d21ef77880db">GetBrowserFileContent Method </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>FileUtils Methods</h1></td></tr></table><span class="introStyle"></span> <p>The <a href="7a25c2af-35c1-9400-f498-16cc7758cc55.htm">FileUtils</a> type exposes the following members.</p><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID0RB')" onkeypress="SectionExpandCollapse_CheckKey('ID0RB', event)" tabindex="0"><img id="ID0RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Methods</span></div><div id="ID0RBSection" class="collapsibleSection"><table class="members" id="methodList"><tr><th class="iconColumn">
 
</th><th>Name</th><th>Description</th></tr><tr data="public;static;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="1c79d954-4f38-b599-c5fe-7f26593a2119.htm">CreateFile</a></td><td><div class="summary">
Creates a file with the given content and type and returns information about it.
</div></td></tr><tr data="public;static;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="0753b1d7-ec64-b3ce-c988-2d13507ab3f8.htm">CreateUrlObject</a></td><td><div class="summary">
Creates an URL object from a file specified by id and returns the URL.
</div></td></tr><tr data="public;static;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="b9cc0962-f6d7-762a-672c-2a2005cc7c90.htm">DownloadFile</a></td><td><div class="summary">
Download a file specified by id to a client.
</div></td></tr><tr data="public;static;declared;notNetfw;"><td><img src="../icons/pubmethod.gif" alt="Public method" title="Public method" /><img src="../icons/static.gif" alt="Static member" title="Static member" /></td><td><a href="db66a780-26ea-ea1c-c671-d21ef77880db.htm">GetBrowserFileContent</a></td><td><div class="summary">
Gets already fetched file content from the context.
</div></td></tr></table><a href="#PageHeader">Top</a></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID1RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="7a25c2af-35c1-9400-f498-16cc7758cc55.htm">FileUtils Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Просмотреть файл

@ -1,12 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>EventHelper.AddSimpleEventListener Method </title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="AddSimpleEventListener method" /><meta name="System.Keywords" content="EventHelper.AddSimpleEventListener method" /><meta name="Microsoft.Help.F1" content="Peachpie.Blazor.EventHelper.AddSimpleEventListener" /><meta name="Microsoft.Help.Id" content="M:Peachpie.Blazor.EventHelper.AddSimpleEventListener(Pchp.Core.Context,System.Object,System.String,Pchp.Core.IPhpCallable)" /><meta name="Description" content="Adds the event listener without further args specification." /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="24b0b196-3fcd-39e8-da78-abcd5ed0296c" /><meta name="guid" content="24b0b196-3fcd-39e8-da78-abcd5ed0296c" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/3a4c3348-6ec2-1fe5-70b1-0ef0fa120305.htm" title="EventHelper Class" tocid="3a4c3348-6ec2-1fe5-70b1-0ef0fa120305">EventHelper Class</a></div><div class="toclevel1" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/df740326-8d81-6dfa-a811-418baaeb8da6.htm" title="EventHelper Methods" tocid="df740326-8d81-6dfa-a811-418baaeb8da6">EventHelper Methods</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/9c9acce0-4086-2b2f-e4b3-96aff96dfe43.htm" title="AddEventListener(TEventArgs) Method " tocid="9c9acce0-4086-2b2f-e4b3-96aff96dfe43">AddEventListener(TEventArgs) Method </a></div><div class="toclevel2 current" data-toclevel="2"><a data-tochassubtree="false" href="../html/24b0b196-3fcd-39e8-da78-abcd5ed0296c.htm" title="AddSimpleEventListener Method " tocid="24b0b196-3fcd-39e8-da78-abcd5ed0296c">AddSimpleEventListener Method </a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>EventHelper<span id="LST9D43AD60_0"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST9D43AD60_0?cpp=::|nu=.");</script>AddSimpleEventListener Method </h1></td></tr></table><span class="introStyle"></span> <div class="summary">
Adds the event listener without further args specification.
</div><p> </p>
<strong>Namespace:</strong>
 <a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor</a><br />
<strong>Assembly:</strong>
 Peachpie.Blazor (in Peachpie.Blazor.dll) Version: 1.0.0<div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Syntax</span></div><div id="ID1RBSection" class="collapsibleSection"><div class="codeSnippetContainer"><div class="codeSnippetContainerTabs"><div id="ID0EACA_tab1" class="codeSnippetContainerTabSingle">C#</div></div><div class="codeSnippetContainerCodeContainer"><div class="codeSnippetToolBar"><div class="codeSnippetToolBarText"><a id="ID0EACA_copyCode" href="#" class="copyCodeSnippet" onclick="javascript:CopyToClipboard('ID0EACA');return false;" title="Copy">Copy</a></div></div><div id="ID0EACA_code_Div1" class="codeSnippetContainerCode" style="display: block"><pre xml:space="preserve"><span class="keyword">public</span> <span class="keyword">static</span> <span class="keyword">void</span> <span class="identifier">AddSimpleEventListener</span>(
<span class="identifier">Context</span> <span class="parameter">ctx</span>,
<span class="identifier">Object</span> <span class="parameter">target</span>,
<span class="identifier">string</span> <span class="parameter">eventName</span>,
<span class="identifier">IPhpCallable</span> <span class="parameter">handler</span>
)</pre></div></div></div><script type="text/javascript">AddLanguageTabSet("ID0EACA");</script><h4 class="subHeading">Parameters</h4><dl><dt><span class="parameter">ctx</span></dt><dd>Type: <span class="nolink">Context</span><br /></dd><dt><span class="parameter">target</span></dt><dd>Type: <a href="https://docs.microsoft.com/dotnet/api/system.object" target="_blank" rel="noopener noreferrer">System<span id="LST9D43AD60_1"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST9D43AD60_1?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>Object</a><br /></dd><dt><span class="parameter">eventName</span></dt><dd>Type: <a href="https://docs.microsoft.com/dotnet/api/system.string" target="_blank" rel="noopener noreferrer">System<span id="LST9D43AD60_2"></span><script type="text/javascript">AddLanguageSpecificTextSet("LST9D43AD60_2?cs=.|vb=.|cpp=::|nu=.|fs=.");</script>String</a><br /></dd><dt><span class="parameter">handler</span></dt><dd>Type: <span class="nolink">IPhpCallable</span><br /></dd></dl></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID2RB')" onkeypress="SectionExpandCollapse_CheckKey('ID2RB', event)" tabindex="0"><img id="ID2RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID2RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="3a4c3348-6ec2-1fe5-70b1-0ef0fa120305.htm">EventHelper Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -1,3 +0,0 @@
<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge" /><link rel="shortcut icon" href="../icons/favicon.ico" /><link rel="stylesheet" type="text/css" href="../styles/branding.css" /><link rel="stylesheet" type="text/css" href="../styles/branding-en-US.css" /><script type="text/javascript" src="../scripts/branding.js"> </script><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>ClassBuilder Fields</title><meta name="Language" content="en-us" /><meta name="System.Keywords" content="ClassBuilder class, fields" /><meta name="Microsoft.Help.Id" content="Fields.T:Peachpie.Blazor.ClassBuilder" /><meta name="Microsoft.Help.ContentType" content="Reference" /><meta name="BrandingAware" content="true" /><meta name="container" content="Peachpie.Blazor" /><meta name="file" content="261a3181-07b8-345d-4b47-bf92efc900a4" /><meta name="guid" content="261a3181-07b8-345d-4b47-bf92efc900a4" /><link rel="stylesheet" type="text/css" href="../styles/branding-Website.css" /><script type="text/javascript" src="../scripts/jquery-3.5.1.min.js"></script><script type="text/javascript" src="../scripts/branding-Website.js"></script><script type="text/javascript" src="../scripts/clipboard.min.js"></script></head><body onload="OnLoad('cs')"><input type="hidden" id="userDataCache" class="userDataStyle" /><div class="pageHeader" id="PageHeader">A Sandcastle Documented Class Library<form id="SearchForm" method="get" action="#" onsubmit="javascript:TransferToSearchPage(); return false;"><input id="SearchTextBox" type="text" maxlength="200" /><button id="SearchButton" type="submit"></button></form></div><div class="pageBody"><div class="leftNav" id="leftNav"><div id="tocNav"><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="A Sandcastle Documented Class Library" tocid="roottoc">A Sandcastle Documented Class Library</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm" title="Peachpie.Blazor" tocid="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0">Peachpie.Blazor</a></div><div class="toclevel0" data-toclevel="0"><a class="tocCollapsed" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/933dcd64-4995-bab0-fea0-334fffa9001b.htm" title="ClassBuilder Class" tocid="933dcd64-4995-bab0-fea0-334fffa9001b">ClassBuilder Class</a></div><div class="toclevel1 current" data-toclevel="1" data-childrenloaded="true"><a class="tocExpanded" onclick="javascript: Toggle(this);" href="#!" /><a data-tochassubtree="true" href="../html/261a3181-07b8-345d-4b47-bf92efc900a4.htm" title="ClassBuilder Fields" tocid="261a3181-07b8-345d-4b47-bf92efc900a4">ClassBuilder Fields</a></div><div class="toclevel2" data-toclevel="2"><a data-tochassubtree="false" href="../html/aa80dab1-1dfd-061c-021d-a5d9d2b053f1.htm" title="_classes Field" tocid="aa80dab1-1dfd-061c-021d-a5d9d2b053f1">_classes Field</a></div></div><div id="tocResizableEW" onmousedown="OnMouseDown(event);"></div><div id="TocResize" class="tocResize"><img id="ResizeImageIncrease" src="../icons/TocOpen.gif" onclick="OnIncreaseToc()" alt="Click or drag to resize" title="Click or drag to resize" /><img id="ResizeImageReset" src="../icons/TocClose.gif" style="display:none" onclick="OnResetToc()" alt="Click or drag to resize" title="Click or drag to resize" /></div></div><div class="topicContent" id="TopicContent"><table class="titleTable"><tr><td class="titleColumn"><h1>ClassBuilder Fields</h1></td></tr></table><span class="introStyle"></span> <p>The <a href="933dcd64-4995-bab0-fea0-334fffa9001b.htm">ClassBuilder</a> type exposes the following members.</p><div class="collapsibleAreaRegion"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID0RB')" onkeypress="SectionExpandCollapse_CheckKey('ID0RB', event)" tabindex="0"><img id="ID0RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />Fields</span></div><div id="ID0RBSection" class="collapsibleSection"><table class="members" id="fieldList"><tr><th class="iconColumn">
 
</th><th>Name</th><th>Description</th></tr><tr data="protected;declared;notNetfw;"><td><img src="../icons/protfield.gif" alt="Protected field" title="Protected field" /></td><td><a href="aa80dab1-1dfd-061c-021d-a5d9d2b053f1.htm">_classes</a></td><td /></tr></table><a href="#PageHeader">Top</a></div><div class="collapsibleAreaRegion" id="seeAlsoSection"><span class="collapsibleRegionTitle" onclick="SectionExpandCollapse('ID1RB')" onkeypress="SectionExpandCollapse_CheckKey('ID1RB', event)" tabindex="0"><img id="ID1RBToggle" class="collapseToggle" src="../icons/SectionExpanded.png" />See Also</span></div><div id="ID1RBSection" class="collapsibleSection"><h4 class="subHeading">Reference</h4><div class="seeAlsoStyle"><a href="933dcd64-4995-bab0-fea0-334fffa9001b.htm">ClassBuilder Class</a></div><div class="seeAlsoStyle"><a href="b2dfc4ab-5540-1cbf-1c64-6daa67bb10a0.htm">Peachpie.Blazor Namespace</a></div></div></div></div><div id="pageFooter" class="pageFooter"> </div></body></html>

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше