Skip to content

Commit b9b293b

Browse files
committed
Updated generated docs.
Updated generated cs.
1 parent 1af9e91 commit b9b293b

File tree

861 files changed

+45273
-33602
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

861 files changed

+45273
-33602
lines changed

CSharpToJavaScript/APIs/JS/Generated/JS1.generated.cs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//25.09.2025 17:09:11
1+
//12.12.2025 21:28:31
22

33
#nullable enable
44
//Disable missing XML comments.
@@ -719,6 +719,7 @@ public enum FenceReportingDestination
719719
SharedStorageSelectUrl,
720720
}
721721

722+
///<include file='Utils/Docs/request/request.generated.xml' path='docs/RequestDestination/*'/>
722723
[To(ToAttribute.None)]
723724
public enum RequestDestination
724725
{
@@ -766,6 +767,7 @@ public enum RequestDestination
766767
Xslt,
767768
}
768769

770+
///<include file='Utils/Docs/request/request.generated.xml' path='docs/RequestMode/*'/>
769771
[To(ToAttribute.None)]
770772
public enum RequestMode
771773
{
@@ -779,6 +781,7 @@ public enum RequestMode
779781
Cors,
780782
}
781783

784+
///<include file='Utils/Docs/request/request.generated.xml' path='docs/RequestCredentials/*'/>
782785
[To(ToAttribute.None)]
783786
public enum RequestCredentials
784787
{
@@ -790,6 +793,7 @@ public enum RequestCredentials
790793
Include,
791794
}
792795

796+
///<include file='Utils/Docs/request/request.generated.xml' path='docs/RequestCache/*'/>
793797
[To(ToAttribute.None)]
794798
public enum RequestCache
795799
{
@@ -807,6 +811,7 @@ public enum RequestCache
807811
OnlyIfCached,
808812
}
809813

814+
///<include file='Utils/Docs/request/request.generated.xml' path='docs/RequestRedirect/*'/>
810815
[To(ToAttribute.None)]
811816
public enum RequestRedirect
812817
{
@@ -818,13 +823,15 @@ public enum RequestRedirect
818823
Manual,
819824
}
820825

826+
///<include file='Utils/Docs/request/request.generated.xml' path='docs/RequestDuplex/*'/>
821827
[To(ToAttribute.None)]
822828
public enum RequestDuplex
823829
{
824830
[EnumValue("half")]
825831
Half,
826832
}
827833

834+
///<include file='Utils/Docs/request/request.generated.xml' path='docs/RequestPriority/*'/>
828835
[To(ToAttribute.None)]
829836
public enum RequestPriority
830837
{

CSharpToJavaScript/APIs/JS/Generated/JS2.generated.cs

Lines changed: 32 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//25.09.2025 17:09:11
1+
//12.12.2025 21:28:31
22

33
#nullable enable
44
//Disable missing XML comments.
@@ -315,10 +315,12 @@ public partial interface EventListener
315315
public Undefined HandleEvent(Event event_) { throw new System.NotImplementedException(); }
316316
}
317317

318+
///<include file='Utils/Docs/document/document.generated.xml' path='docs/Document/*'/>
318319
[Value("NonElementParentNode")]
319320
public partial interface NonElementParentNode
320321
{
321-
[Value("getElementById")]
322+
///<include file='Utils/Docs/document/document.generated.xml' path='docs/DocumentGetElementById/*'/>
323+
[Value("getElementById")]
322324
public Element? GetElementById(DOMString elementId) { throw new System.NotImplementedException(); }
323325
}
324326

@@ -330,26 +332,36 @@ public partial interface DocumentOrShadowRoot
330332

331333

332334

335+
///<include file='Utils/Docs/element/element.generated.xml' path='docs/Element/*'/>
333336
[Value("ParentNode")]
334337
public partial interface ParentNode
335338
{
336-
[Value("children")]
339+
///<include file='Utils/Docs/element/element.generated.xml' path='docs/ElementChildren/*'/>
340+
[Value("children")]
337341
public HTMLCollection Children { get { throw new System.NotImplementedException(); } }
338-
[Value("firstElementChild")]
342+
///<include file='Utils/Docs/element/element.generated.xml' path='docs/ElementFirstElementChild/*'/>
343+
[Value("firstElementChild")]
339344
public Element? FirstElementChild { get { throw new System.NotImplementedException(); } }
340-
[Value("lastElementChild")]
345+
///<include file='Utils/Docs/element/element.generated.xml' path='docs/ElementLastElementChild/*'/>
346+
[Value("lastElementChild")]
341347
public Element? LastElementChild { get { throw new System.NotImplementedException(); } }
342-
[Value("childElementCount")]
348+
///<include file='Utils/Docs/element/element.generated.xml' path='docs/ElementChildElementCount/*'/>
349+
[Value("childElementCount")]
343350
public ulong ChildElementCount { get { throw new System.NotImplementedException(); } }
344-
[Value("prepend")]
351+
///<include file='Utils/Docs/element/element.generated.xml' path='docs/ElementPrepend/*'/>
352+
[Value("prepend")]
345353
public Undefined Prepend(params Union28[] nodes) { throw new System.NotImplementedException(); }
346-
[Value("append")]
354+
///<include file='Utils/Docs/element/element.generated.xml' path='docs/ElementAppend/*'/>
355+
[Value("append")]
347356
public Undefined Append(params Union29[] nodes) { throw new System.NotImplementedException(); }
348-
[Value("replaceChildren")]
357+
///<include file='Utils/Docs/element/element.generated.xml' path='docs/ElementReplaceChildren/*'/>
358+
[Value("replaceChildren")]
349359
public Undefined ReplaceChildren(params Union30[] nodes) { throw new System.NotImplementedException(); }
350-
[Value("querySelector")]
360+
///<include file='Utils/Docs/element/element.generated.xml' path='docs/ElementQuerySelector/*'/>
361+
[Value("querySelector")]
351362
public Element? QuerySelector(DOMString selectors) { throw new System.NotImplementedException(); }
352-
[Value("querySelectorAll")]
363+
///<include file='Utils/Docs/element/element.generated.xml' path='docs/ElementQuerySelectorAll/*'/>
364+
[Value("querySelectorAll")]
353365
public NodeList QuerySelectorAll(DOMString selectors) { throw new System.NotImplementedException(); }
354366
}
355367

@@ -367,16 +379,21 @@ public partial interface NonDocumentTypeChildNode
367379

368380

369381

382+
///<include file='Utils/Docs/element/element.generated.xml' path='docs/Element/*'/>
370383
[Value("ChildNode")]
371384
public partial interface ChildNode
372385
{
373-
[Value("before")]
386+
///<include file='Utils/Docs/element/element.generated.xml' path='docs/ElementBefore/*'/>
387+
[Value("before")]
374388
public Undefined Before(params Union31[] nodes) { throw new System.NotImplementedException(); }
375-
[Value("after")]
389+
///<include file='Utils/Docs/element/element.generated.xml' path='docs/ElementAfter/*'/>
390+
[Value("after")]
376391
public Undefined After(params Union32[] nodes) { throw new System.NotImplementedException(); }
377-
[Value("replaceWith")]
392+
///<include file='Utils/Docs/element/element.generated.xml' path='docs/ElementReplaceWith/*'/>
393+
[Value("replaceWith")]
378394
public Undefined ReplaceWith(params Union33[] nodes) { throw new System.NotImplementedException(); }
379-
[Value("remove")]
395+
///<include file='Utils/Docs/element/element.generated.xml' path='docs/ElementRemove/*'/>
396+
[Value("remove")]
380397
public Undefined Remove() { throw new System.NotImplementedException(); }
381398
}
382399

0 commit comments

Comments
 (0)