PySimultan 0.5.9.6__py3-none-any.whl → 0.6.0.1__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (134) hide show
  1. PySimultan2/CHANGELOG.md +9 -0
  2. PySimultan2/__about__.py +1 -1
  3. PySimultan2/data_model.py +12 -5
  4. PySimultan2/default_types.py +39 -8
  5. PySimultan2/files.py +1 -1
  6. PySimultan2/object_mapper.py +31 -3
  7. PySimultan2/resources/BruTile.dll +0 -0
  8. PySimultan2/resources/ComponentBuilder.dll +0 -0
  9. PySimultan2/resources/ComponentBuilder.xml +93 -15
  10. PySimultan2/resources/HelixToolkit.Core.Wpf.dll +0 -0
  11. PySimultan2/resources/HelixToolkit.SharpDX.Core.Wpf.dll +0 -0
  12. PySimultan2/resources/HelixToolkit.SharpDX.Core.dll +0 -0
  13. PySimultan2/resources/HelixToolkit.dll +0 -0
  14. PySimultan2/resources/Python.Runtime.dll +0 -0
  15. PySimultan2/resources/SIMULTAN.Lang.dll +0 -0
  16. PySimultan2/resources/SIMULTAN.Lang.xml +62 -1
  17. PySimultan2/resources/SIMULTAN.UI.dll +0 -0
  18. PySimultan2/resources/SIMULTAN.UI.xml +57 -0
  19. PySimultan2/resources/SIMULTAN.dll +0 -0
  20. PySimultan2/resources/SIMULTAN.xml +73 -3
  21. PySimultan2/resources/System.Reflection.MetadataLoadContext.dll +0 -0
  22. PySimultan2/resources/defaultsettings.xml +0 -0
  23. PySimultan2/simultan_object.py +6 -1
  24. PySimultan2/taxonomy_maps.py +45 -27
  25. PySimultan2/typings/SIMULTAN/Data/Assets/__init__.pyi +616 -0
  26. PySimultan2/typings/SIMULTAN/Data/Components/__init__.pyi +2538 -0
  27. PySimultan2/typings/SIMULTAN/Data/FlowNetworks/__init__.pyi +499 -0
  28. PySimultan2/typings/SIMULTAN/Data/Geometry/__init__.pyi +2219 -0
  29. PySimultan2/typings/SIMULTAN/Data/MultiValues/__init__.pyi +682 -0
  30. PySimultan2/typings/SIMULTAN/Data/SimMath/__init__.pyi +1654 -0
  31. PySimultan2/typings/SIMULTAN/Data/SimNetworks/__init__.pyi +442 -0
  32. PySimultan2/typings/SIMULTAN/Data/SitePlanner/__init__.pyi +193 -0
  33. PySimultan2/typings/SIMULTAN/Data/Taxonomy/__init__.pyi +367 -0
  34. PySimultan2/typings/SIMULTAN/Data/Users/__init__.pyi +116 -0
  35. PySimultan2/typings/SIMULTAN/Data/ValueMappings/__init__.pyi +212 -0
  36. PySimultan2/typings/SIMULTAN/Data/__init__.pyi +232 -0
  37. PySimultan2/typings/SIMULTAN/DataMapping/__init__.pyi +916 -0
  38. PySimultan2/typings/SIMULTAN/Excel/__init__.pyi +15 -0
  39. PySimultan2/typings/SIMULTAN/Exceptions/__init__.pyi +268 -0
  40. PySimultan2/typings/SIMULTAN/Exchange/SimNetworkConnectors/__init__.pyi +32 -0
  41. PySimultan2/typings/SIMULTAN/Exchange/__init__.pyi +116 -0
  42. PySimultan2/typings/SIMULTAN/Projects/ManagedFiles/__init__.pyi +433 -0
  43. PySimultan2/typings/SIMULTAN/Projects/__init__.pyi +435 -0
  44. PySimultan2/typings/SIMULTAN/Serializer/CODXF/__init__.pyi +103 -0
  45. PySimultan2/typings/SIMULTAN/Serializer/CSV/__init__.pyi +122 -0
  46. PySimultan2/typings/SIMULTAN/Serializer/DXF/__init__.pyi +1335 -0
  47. PySimultan2/typings/SIMULTAN/Serializer/Geometry/__init__.pyi +48 -0
  48. PySimultan2/typings/SIMULTAN/Serializer/JSON/__init__.pyi +562 -0
  49. PySimultan2/typings/SIMULTAN/Serializer/METADXF/__init__.pyi +11 -0
  50. PySimultan2/typings/SIMULTAN/Serializer/PADXF/__init__.pyi +21 -0
  51. PySimultan2/typings/SIMULTAN/Serializer/PPATH/__init__.pyi +11 -0
  52. PySimultan2/typings/SIMULTAN/Serializer/Projects/__init__.pyi +112 -0
  53. PySimultan2/typings/SIMULTAN/Serializer/SIMLINKS/__init__.pyi +5 -0
  54. PySimultan2/typings/SIMULTAN/Serializer/SPDXF/__init__.pyi +13 -0
  55. PySimultan2/typings/SIMULTAN/Serializer/SimGeo/__init__.pyi +54 -0
  56. PySimultan2/typings/SIMULTAN/Serializer/TXDXF/__init__.pyi +46 -0
  57. PySimultan2/typings/SIMULTAN/Serializer/XMI/__init__.pyi +22 -0
  58. PySimultan2/typings/SIMULTAN/Serializer/__init__.pyi +32 -0
  59. PySimultan2/typings/SIMULTAN/Utils/BackgroundWork/__init__.pyi +43 -0
  60. PySimultan2/typings/SIMULTAN/Utils/Collections/__init__.pyi +216 -0
  61. PySimultan2/typings/SIMULTAN/Utils/ElevationProvider/__init__.pyi +66 -0
  62. PySimultan2/typings/SIMULTAN/Utils/Files/__init__.pyi +48 -0
  63. PySimultan2/typings/SIMULTAN/Utils/Randomize/__init__.pyi +11 -0
  64. PySimultan2/typings/SIMULTAN/Utils/Streams/__init__.pyi +59 -0
  65. PySimultan2/typings/SIMULTAN/Utils/UndoRedo/__init__.pyi +133 -0
  66. PySimultan2/typings/SIMULTAN/Utils/__init__.pyi +570 -0
  67. PySimultan2/typings/System/Buffers/Binary/__init__.pyi +248 -0
  68. PySimultan2/typings/System/Buffers/Text/__init__.pyi +91 -0
  69. PySimultan2/typings/System/Buffers/__init__.pyi +192 -0
  70. PySimultan2/typings/System/CodeDom/Compiler/__init__.pyi +137 -0
  71. PySimultan2/typings/System/Collections/Concurrent/__init__.pyi +47 -0
  72. PySimultan2/typings/System/Collections/Generic/__init__.pyi +1293 -0
  73. PySimultan2/typings/System/Collections/ObjectModel/__init__.pyi +166 -0
  74. PySimultan2/typings/System/Collections/Specialized/__init__.pyi +82 -0
  75. PySimultan2/typings/System/Collections/__init__.pyi +403 -0
  76. PySimultan2/typings/System/ComponentModel/__init__.pyi +582 -0
  77. PySimultan2/typings/System/Configuration/Assemblies/__init__.pyi +30 -0
  78. PySimultan2/typings/System/Diagnostics/CodeAnalysis/__init__.pyi +315 -0
  79. PySimultan2/typings/System/Diagnostics/Contracts/__init__.pyi +297 -0
  80. PySimultan2/typings/System/Diagnostics/SymbolStore/__init__.pyi +9 -0
  81. PySimultan2/typings/System/Diagnostics/Tracing/__init__.pyi +641 -0
  82. PySimultan2/typings/System/Diagnostics/__init__.pyi +1101 -0
  83. PySimultan2/typings/System/Globalization/__init__.pyi +1675 -0
  84. PySimultan2/typings/System/IO/Enumeration/__init__.pyi +125 -0
  85. PySimultan2/typings/System/IO/__init__.pyi +2747 -0
  86. PySimultan2/typings/System/Linq/Expressions/__init__.pyi +1815 -0
  87. PySimultan2/typings/System/Net/__init__.pyi +81 -0
  88. PySimultan2/typings/System/Numerics/__init__.pyi +2853 -0
  89. PySimultan2/typings/System/Reflection/Emit/__init__.pyi +1945 -0
  90. PySimultan2/typings/System/Reflection/Metadata/__init__.pyi +24 -0
  91. PySimultan2/typings/System/Reflection/__init__.pyi +2724 -0
  92. PySimultan2/typings/System/Resources/__init__.pyi +205 -0
  93. PySimultan2/typings/System/Runtime/CompilerServices/__init__.pyi +1926 -0
  94. PySimultan2/typings/System/Runtime/ConstrainedExecution/__init__.pyi +49 -0
  95. PySimultan2/typings/System/Runtime/ExceptionServices/__init__.pyi +34 -0
  96. PySimultan2/typings/System/Runtime/InteropServices/ComTypes/__init__.pyi +758 -0
  97. PySimultan2/typings/System/Runtime/InteropServices/Marshalling/__init__.pyi +461 -0
  98. PySimultan2/typings/System/Runtime/InteropServices/ObjectiveC/__init__.pyi +48 -0
  99. PySimultan2/typings/System/Runtime/InteropServices/__init__.pyi +2632 -0
  100. PySimultan2/typings/System/Runtime/Intrinsics/Arm/__init__.pyi +4757 -0
  101. PySimultan2/typings/System/Runtime/Intrinsics/Wasm/__init__.pyi +844 -0
  102. PySimultan2/typings/System/Runtime/Intrinsics/X86/__init__.pyi +5642 -0
  103. PySimultan2/typings/System/Runtime/Intrinsics/__init__.pyi +4504 -0
  104. PySimultan2/typings/System/Runtime/Loader/__init__.pyi +63 -0
  105. PySimultan2/typings/System/Runtime/Remoting/__init__.pyi +7 -0
  106. PySimultan2/typings/System/Runtime/Serialization/__init__.pyi +269 -0
  107. PySimultan2/typings/System/Runtime/Versioning/__init__.pyi +200 -0
  108. PySimultan2/typings/System/Runtime/__init__.pyi +141 -0
  109. PySimultan2/typings/System/Security/Cryptography/__init__.pyi +39 -0
  110. PySimultan2/typings/System/Security/Permissions/__init__.pyi +163 -0
  111. PySimultan2/typings/System/Security/Principal/__init__.pyi +45 -0
  112. PySimultan2/typings/System/Security/__init__.pyi +347 -0
  113. PySimultan2/typings/System/Text/Unicode/__init__.pyi +62 -0
  114. PySimultan2/typings/System/Text/__init__.pyi +1590 -0
  115. PySimultan2/typings/System/Threading/Tasks/Sources/__init__.pyi +76 -0
  116. PySimultan2/typings/System/Threading/Tasks/__init__.pyi +1403 -0
  117. PySimultan2/typings/System/Threading/__init__.pyi +1788 -0
  118. PySimultan2/typings/System/Xml/Schema/__init__.pyi +1255 -0
  119. PySimultan2/typings/System/Xml/Serialization/__init__.pyi +16 -0
  120. PySimultan2/typings/System/Xml/XPath/__init__.pyi +474 -0
  121. PySimultan2/typings/System/Xml/__init__.pyi +2410 -0
  122. PySimultan2/typings/System/__init__.pyi +17821 -0
  123. PySimultan2/utils.py +10 -5
  124. {pysimultan-0.5.9.6.dist-info → pysimultan-0.6.0.1.dist-info}/METADATA +5 -1
  125. pysimultan-0.6.0.1.dist-info/RECORD +174 -0
  126. PySimultan2/resources/SIMULTAN.AutoUpdate.Client.dll +0 -0
  127. PySimultan2/resources/SIMULTAN.AutoUpdate.Client.dll.config +0 -11
  128. PySimultan2/resources/SIMULTAN.AutoUpdate.DataTransferLibrary.dll +0 -0
  129. PySimultan2/resources/SIMULTAN.AutoUpdate.DataTransferLibrary.dll.config +0 -15
  130. PySimultan2/resources/SIMULTAN.Plugins.dll +0 -0
  131. PySimultan2/resources/SIMULTAN.Plugins.xml +0 -396
  132. pysimultan-0.5.9.6.dist-info/RECORD +0 -81
  133. {pysimultan-0.5.9.6.dist-info → pysimultan-0.6.0.1.dist-info}/WHEEL +0 -0
  134. {pysimultan-0.5.9.6.dist-info → pysimultan-0.6.0.1.dist-info}/licenses/LICENSE.txt +0 -0
@@ -0,0 +1,1926 @@
1
+ import typing, clr, abc
2
+ from System import Attribute, Exception, Array, Array_1, MulticastDelegate, IAsyncResult, AsyncCallback, Action, Decimal, IFormatProvider, Span_1, ReadOnlySpan_1, FormattableString, RuntimeTypeHandle, RuntimeFieldHandle, Delegate, ModuleHandle, Range, RuntimeMethodHandle, InvalidOperationException, UIntPtr
3
+ from System.Threading.Tasks import Task, Task_1, ValueTask, ValueTask_1
4
+ from System.Linq.Expressions import LabelTarget, Expression, ParameterExpression, LambdaExpression, DebugInfoExpression
5
+ from System.Collections.ObjectModel import ReadOnlyCollection_1
6
+ from System.Collections.Generic import IEnumerable_1, KeyValuePair_2, IList_1
7
+ from System.Reflection import MethodInfo, MethodBase
8
+ from System.Threading import CancellationToken
9
+ from System.Diagnostics.Contracts import ContractFailureKind
10
+ from System.Collections import IDictionary
11
+ from System.Runtime.Serialization import SerializationInfo, StreamingContext
12
+
13
+ class AccessedThroughPropertyAttribute(Attribute):
14
+ def __init__(self, propertyName: str) -> None: ...
15
+ @property
16
+ def PropertyName(self) -> str: ...
17
+ @property
18
+ def TypeId(self) -> typing.Any: ...
19
+
20
+
21
+ class AsyncIteratorMethodBuilder:
22
+ def Complete(self) -> None: ...
23
+ @staticmethod
24
+ def Create() -> AsyncIteratorMethodBuilder: ...
25
+ # Skipped AwaitOnCompleted due to it being static, abstract and generic.
26
+
27
+ AwaitOnCompleted : AwaitOnCompleted_MethodGroup
28
+ class AwaitOnCompleted_MethodGroup:
29
+ def __getitem__(self, t:typing.Tuple[typing.Type[AwaitOnCompleted_2_T1], typing.Type[AwaitOnCompleted_2_T2]]) -> AwaitOnCompleted_2[AwaitOnCompleted_2_T1, AwaitOnCompleted_2_T2]: ...
30
+
31
+ AwaitOnCompleted_2_T1 = typing.TypeVar('AwaitOnCompleted_2_T1')
32
+ AwaitOnCompleted_2_T2 = typing.TypeVar('AwaitOnCompleted_2_T2')
33
+ class AwaitOnCompleted_2(typing.Generic[AwaitOnCompleted_2_T1, AwaitOnCompleted_2_T2]):
34
+ AwaitOnCompleted_2_TAwaiter = AsyncIteratorMethodBuilder.AwaitOnCompleted_MethodGroup.AwaitOnCompleted_2_T1
35
+ AwaitOnCompleted_2_TStateMachine = AsyncIteratorMethodBuilder.AwaitOnCompleted_MethodGroup.AwaitOnCompleted_2_T2
36
+ def __call__(self, awaiter: clr.Reference[AwaitOnCompleted_2_TAwaiter], stateMachine: clr.Reference[AwaitOnCompleted_2_TStateMachine]) -> None:...
37
+
38
+
39
+ # Skipped AwaitUnsafeOnCompleted due to it being static, abstract and generic.
40
+
41
+ AwaitUnsafeOnCompleted : AwaitUnsafeOnCompleted_MethodGroup
42
+ class AwaitUnsafeOnCompleted_MethodGroup:
43
+ def __getitem__(self, t:typing.Tuple[typing.Type[AwaitUnsafeOnCompleted_2_T1], typing.Type[AwaitUnsafeOnCompleted_2_T2]]) -> AwaitUnsafeOnCompleted_2[AwaitUnsafeOnCompleted_2_T1, AwaitUnsafeOnCompleted_2_T2]: ...
44
+
45
+ AwaitUnsafeOnCompleted_2_T1 = typing.TypeVar('AwaitUnsafeOnCompleted_2_T1')
46
+ AwaitUnsafeOnCompleted_2_T2 = typing.TypeVar('AwaitUnsafeOnCompleted_2_T2')
47
+ class AwaitUnsafeOnCompleted_2(typing.Generic[AwaitUnsafeOnCompleted_2_T1, AwaitUnsafeOnCompleted_2_T2]):
48
+ AwaitUnsafeOnCompleted_2_TAwaiter = AsyncIteratorMethodBuilder.AwaitUnsafeOnCompleted_MethodGroup.AwaitUnsafeOnCompleted_2_T1
49
+ AwaitUnsafeOnCompleted_2_TStateMachine = AsyncIteratorMethodBuilder.AwaitUnsafeOnCompleted_MethodGroup.AwaitUnsafeOnCompleted_2_T2
50
+ def __call__(self, awaiter: clr.Reference[AwaitUnsafeOnCompleted_2_TAwaiter], stateMachine: clr.Reference[AwaitUnsafeOnCompleted_2_TStateMachine]) -> None:...
51
+
52
+
53
+ # Skipped MoveNext due to it being static, abstract and generic.
54
+
55
+ MoveNext : MoveNext_MethodGroup
56
+ class MoveNext_MethodGroup:
57
+ def __getitem__(self, t:typing.Type[MoveNext_1_T1]) -> MoveNext_1[MoveNext_1_T1]: ...
58
+
59
+ MoveNext_1_T1 = typing.TypeVar('MoveNext_1_T1')
60
+ class MoveNext_1(typing.Generic[MoveNext_1_T1]):
61
+ MoveNext_1_TStateMachine = AsyncIteratorMethodBuilder.MoveNext_MethodGroup.MoveNext_1_T1
62
+ def __call__(self, stateMachine: clr.Reference[MoveNext_1_TStateMachine]) -> None:...
63
+
64
+
65
+
66
+
67
+ class AsyncIteratorStateMachineAttribute(StateMachineAttribute):
68
+ def __init__(self, stateMachineType: typing.Type[typing.Any]) -> None: ...
69
+ @property
70
+ def StateMachineType(self) -> typing.Type[typing.Any]: ...
71
+ @property
72
+ def TypeId(self) -> typing.Any: ...
73
+
74
+
75
+ class AsyncMethodBuilderAttribute(Attribute):
76
+ def __init__(self, builderType: typing.Type[typing.Any]) -> None: ...
77
+ @property
78
+ def BuilderType(self) -> typing.Type[typing.Any]: ...
79
+ @property
80
+ def TypeId(self) -> typing.Any: ...
81
+
82
+
83
+ class AsyncStateMachineAttribute(StateMachineAttribute):
84
+ def __init__(self, stateMachineType: typing.Type[typing.Any]) -> None: ...
85
+ @property
86
+ def StateMachineType(self) -> typing.Type[typing.Any]: ...
87
+ @property
88
+ def TypeId(self) -> typing.Any: ...
89
+
90
+
91
+ class AsyncTaskMethodBuilder_GenericClasses(abc.ABCMeta):
92
+ Generic_AsyncTaskMethodBuilder_GenericClasses_AsyncTaskMethodBuilder_1_TResult = typing.TypeVar('Generic_AsyncTaskMethodBuilder_GenericClasses_AsyncTaskMethodBuilder_1_TResult')
93
+ def __getitem__(self, types : typing.Type[Generic_AsyncTaskMethodBuilder_GenericClasses_AsyncTaskMethodBuilder_1_TResult]) -> typing.Type[AsyncTaskMethodBuilder_1[Generic_AsyncTaskMethodBuilder_GenericClasses_AsyncTaskMethodBuilder_1_TResult]]: ...
94
+
95
+ class AsyncTaskMethodBuilder(AsyncTaskMethodBuilder_0, metaclass =AsyncTaskMethodBuilder_GenericClasses): ...
96
+
97
+ class AsyncTaskMethodBuilder_0:
98
+ @property
99
+ def Task(self) -> Task: ...
100
+ @staticmethod
101
+ def Create() -> AsyncTaskMethodBuilder: ...
102
+ def SetException(self, exception: Exception) -> None: ...
103
+ def SetResult(self) -> None: ...
104
+ def SetStateMachine(self, stateMachine: IAsyncStateMachine) -> None: ...
105
+ # Skipped AwaitOnCompleted due to it being static, abstract and generic.
106
+
107
+ AwaitOnCompleted : AwaitOnCompleted_MethodGroup
108
+ class AwaitOnCompleted_MethodGroup:
109
+ def __getitem__(self, t:typing.Tuple[typing.Type[AwaitOnCompleted_2_T1], typing.Type[AwaitOnCompleted_2_T2]]) -> AwaitOnCompleted_2[AwaitOnCompleted_2_T1, AwaitOnCompleted_2_T2]: ...
110
+
111
+ AwaitOnCompleted_2_T1 = typing.TypeVar('AwaitOnCompleted_2_T1')
112
+ AwaitOnCompleted_2_T2 = typing.TypeVar('AwaitOnCompleted_2_T2')
113
+ class AwaitOnCompleted_2(typing.Generic[AwaitOnCompleted_2_T1, AwaitOnCompleted_2_T2]):
114
+ AwaitOnCompleted_2_TAwaiter = AsyncTaskMethodBuilder_0.AwaitOnCompleted_MethodGroup.AwaitOnCompleted_2_T1
115
+ AwaitOnCompleted_2_TStateMachine = AsyncTaskMethodBuilder_0.AwaitOnCompleted_MethodGroup.AwaitOnCompleted_2_T2
116
+ def __call__(self, awaiter: clr.Reference[AwaitOnCompleted_2_TAwaiter], stateMachine: clr.Reference[AwaitOnCompleted_2_TStateMachine]) -> None:...
117
+
118
+
119
+ # Skipped AwaitUnsafeOnCompleted due to it being static, abstract and generic.
120
+
121
+ AwaitUnsafeOnCompleted : AwaitUnsafeOnCompleted_MethodGroup
122
+ class AwaitUnsafeOnCompleted_MethodGroup:
123
+ def __getitem__(self, t:typing.Tuple[typing.Type[AwaitUnsafeOnCompleted_2_T1], typing.Type[AwaitUnsafeOnCompleted_2_T2]]) -> AwaitUnsafeOnCompleted_2[AwaitUnsafeOnCompleted_2_T1, AwaitUnsafeOnCompleted_2_T2]: ...
124
+
125
+ AwaitUnsafeOnCompleted_2_T1 = typing.TypeVar('AwaitUnsafeOnCompleted_2_T1')
126
+ AwaitUnsafeOnCompleted_2_T2 = typing.TypeVar('AwaitUnsafeOnCompleted_2_T2')
127
+ class AwaitUnsafeOnCompleted_2(typing.Generic[AwaitUnsafeOnCompleted_2_T1, AwaitUnsafeOnCompleted_2_T2]):
128
+ AwaitUnsafeOnCompleted_2_TAwaiter = AsyncTaskMethodBuilder_0.AwaitUnsafeOnCompleted_MethodGroup.AwaitUnsafeOnCompleted_2_T1
129
+ AwaitUnsafeOnCompleted_2_TStateMachine = AsyncTaskMethodBuilder_0.AwaitUnsafeOnCompleted_MethodGroup.AwaitUnsafeOnCompleted_2_T2
130
+ def __call__(self, awaiter: clr.Reference[AwaitUnsafeOnCompleted_2_TAwaiter], stateMachine: clr.Reference[AwaitUnsafeOnCompleted_2_TStateMachine]) -> None:...
131
+
132
+
133
+ # Skipped Start due to it being static, abstract and generic.
134
+
135
+ Start : Start_MethodGroup
136
+ class Start_MethodGroup:
137
+ def __getitem__(self, t:typing.Type[Start_1_T1]) -> Start_1[Start_1_T1]: ...
138
+
139
+ Start_1_T1 = typing.TypeVar('Start_1_T1')
140
+ class Start_1(typing.Generic[Start_1_T1]):
141
+ Start_1_TStateMachine = AsyncTaskMethodBuilder_0.Start_MethodGroup.Start_1_T1
142
+ def __call__(self, stateMachine: clr.Reference[Start_1_TStateMachine]) -> None:...
143
+
144
+
145
+
146
+
147
+ AsyncTaskMethodBuilder_1_TResult = typing.TypeVar('AsyncTaskMethodBuilder_1_TResult')
148
+ class AsyncTaskMethodBuilder_1(typing.Generic[AsyncTaskMethodBuilder_1_TResult]):
149
+ @property
150
+ def Task(self) -> Task_1[AsyncTaskMethodBuilder_1_TResult]: ...
151
+ @staticmethod
152
+ def Create() -> AsyncTaskMethodBuilder_1[AsyncTaskMethodBuilder_1_TResult]: ...
153
+ def SetException(self, exception: Exception) -> None: ...
154
+ def SetResult(self, result: AsyncTaskMethodBuilder_1_TResult) -> None: ...
155
+ def SetStateMachine(self, stateMachine: IAsyncStateMachine) -> None: ...
156
+ # Skipped AwaitOnCompleted due to it being static, abstract and generic.
157
+
158
+ AwaitOnCompleted : AwaitOnCompleted_MethodGroup[AsyncTaskMethodBuilder_1_TResult]
159
+ AwaitOnCompleted_MethodGroup_AsyncTaskMethodBuilder_1_TResult = typing.TypeVar('AwaitOnCompleted_MethodGroup_AsyncTaskMethodBuilder_1_TResult')
160
+ class AwaitOnCompleted_MethodGroup(typing.Generic[AwaitOnCompleted_MethodGroup_AsyncTaskMethodBuilder_1_TResult]):
161
+ AwaitOnCompleted_MethodGroup_AsyncTaskMethodBuilder_1_TResult = AsyncTaskMethodBuilder_1.AwaitOnCompleted_MethodGroup_AsyncTaskMethodBuilder_1_TResult
162
+ def __getitem__(self, t:typing.Tuple[typing.Type[AwaitOnCompleted_2_T1], typing.Type[AwaitOnCompleted_2_T2]]) -> AwaitOnCompleted_2[AwaitOnCompleted_MethodGroup_AsyncTaskMethodBuilder_1_TResult, AwaitOnCompleted_2_T1, AwaitOnCompleted_2_T2]: ...
163
+
164
+ AwaitOnCompleted_2_AsyncTaskMethodBuilder_1_TResult = typing.TypeVar('AwaitOnCompleted_2_AsyncTaskMethodBuilder_1_TResult')
165
+ AwaitOnCompleted_2_T1 = typing.TypeVar('AwaitOnCompleted_2_T1')
166
+ AwaitOnCompleted_2_T2 = typing.TypeVar('AwaitOnCompleted_2_T2')
167
+ class AwaitOnCompleted_2(typing.Generic[AwaitOnCompleted_2_AsyncTaskMethodBuilder_1_TResult, AwaitOnCompleted_2_T1, AwaitOnCompleted_2_T2]):
168
+ AwaitOnCompleted_2_AsyncTaskMethodBuilder_1_TResult = AsyncTaskMethodBuilder_1.AwaitOnCompleted_MethodGroup.AwaitOnCompleted_2_AsyncTaskMethodBuilder_1_TResult
169
+ AwaitOnCompleted_2_TAwaiter = AsyncTaskMethodBuilder_1.AwaitOnCompleted_MethodGroup.AwaitOnCompleted_2_T1
170
+ AwaitOnCompleted_2_TStateMachine = AsyncTaskMethodBuilder_1.AwaitOnCompleted_MethodGroup.AwaitOnCompleted_2_T2
171
+ def __call__(self, awaiter: clr.Reference[AwaitOnCompleted_2_TAwaiter], stateMachine: clr.Reference[AwaitOnCompleted_2_TStateMachine]) -> None:...
172
+
173
+
174
+ # Skipped AwaitUnsafeOnCompleted due to it being static, abstract and generic.
175
+
176
+ AwaitUnsafeOnCompleted : AwaitUnsafeOnCompleted_MethodGroup[AsyncTaskMethodBuilder_1_TResult]
177
+ AwaitUnsafeOnCompleted_MethodGroup_AsyncTaskMethodBuilder_1_TResult = typing.TypeVar('AwaitUnsafeOnCompleted_MethodGroup_AsyncTaskMethodBuilder_1_TResult')
178
+ class AwaitUnsafeOnCompleted_MethodGroup(typing.Generic[AwaitUnsafeOnCompleted_MethodGroup_AsyncTaskMethodBuilder_1_TResult]):
179
+ AwaitUnsafeOnCompleted_MethodGroup_AsyncTaskMethodBuilder_1_TResult = AsyncTaskMethodBuilder_1.AwaitUnsafeOnCompleted_MethodGroup_AsyncTaskMethodBuilder_1_TResult
180
+ def __getitem__(self, t:typing.Tuple[typing.Type[AwaitUnsafeOnCompleted_2_T1], typing.Type[AwaitUnsafeOnCompleted_2_T2]]) -> AwaitUnsafeOnCompleted_2[AwaitUnsafeOnCompleted_MethodGroup_AsyncTaskMethodBuilder_1_TResult, AwaitUnsafeOnCompleted_2_T1, AwaitUnsafeOnCompleted_2_T2]: ...
181
+
182
+ AwaitUnsafeOnCompleted_2_AsyncTaskMethodBuilder_1_TResult = typing.TypeVar('AwaitUnsafeOnCompleted_2_AsyncTaskMethodBuilder_1_TResult')
183
+ AwaitUnsafeOnCompleted_2_T1 = typing.TypeVar('AwaitUnsafeOnCompleted_2_T1')
184
+ AwaitUnsafeOnCompleted_2_T2 = typing.TypeVar('AwaitUnsafeOnCompleted_2_T2')
185
+ class AwaitUnsafeOnCompleted_2(typing.Generic[AwaitUnsafeOnCompleted_2_AsyncTaskMethodBuilder_1_TResult, AwaitUnsafeOnCompleted_2_T1, AwaitUnsafeOnCompleted_2_T2]):
186
+ AwaitUnsafeOnCompleted_2_AsyncTaskMethodBuilder_1_TResult = AsyncTaskMethodBuilder_1.AwaitUnsafeOnCompleted_MethodGroup.AwaitUnsafeOnCompleted_2_AsyncTaskMethodBuilder_1_TResult
187
+ AwaitUnsafeOnCompleted_2_TAwaiter = AsyncTaskMethodBuilder_1.AwaitUnsafeOnCompleted_MethodGroup.AwaitUnsafeOnCompleted_2_T1
188
+ AwaitUnsafeOnCompleted_2_TStateMachine = AsyncTaskMethodBuilder_1.AwaitUnsafeOnCompleted_MethodGroup.AwaitUnsafeOnCompleted_2_T2
189
+ def __call__(self, awaiter: clr.Reference[AwaitUnsafeOnCompleted_2_TAwaiter], stateMachine: clr.Reference[AwaitUnsafeOnCompleted_2_TStateMachine]) -> None:...
190
+
191
+
192
+ # Skipped Start due to it being static, abstract and generic.
193
+
194
+ Start : Start_MethodGroup[AsyncTaskMethodBuilder_1_TResult]
195
+ Start_MethodGroup_AsyncTaskMethodBuilder_1_TResult = typing.TypeVar('Start_MethodGroup_AsyncTaskMethodBuilder_1_TResult')
196
+ class Start_MethodGroup(typing.Generic[Start_MethodGroup_AsyncTaskMethodBuilder_1_TResult]):
197
+ Start_MethodGroup_AsyncTaskMethodBuilder_1_TResult = AsyncTaskMethodBuilder_1.Start_MethodGroup_AsyncTaskMethodBuilder_1_TResult
198
+ def __getitem__(self, t:typing.Type[Start_1_T1]) -> Start_1[Start_MethodGroup_AsyncTaskMethodBuilder_1_TResult, Start_1_T1]: ...
199
+
200
+ Start_1_AsyncTaskMethodBuilder_1_TResult = typing.TypeVar('Start_1_AsyncTaskMethodBuilder_1_TResult')
201
+ Start_1_T1 = typing.TypeVar('Start_1_T1')
202
+ class Start_1(typing.Generic[Start_1_AsyncTaskMethodBuilder_1_TResult, Start_1_T1]):
203
+ Start_1_AsyncTaskMethodBuilder_1_TResult = AsyncTaskMethodBuilder_1.Start_MethodGroup.Start_1_AsyncTaskMethodBuilder_1_TResult
204
+ Start_1_TStateMachine = AsyncTaskMethodBuilder_1.Start_MethodGroup.Start_1_T1
205
+ def __call__(self, stateMachine: clr.Reference[Start_1_TStateMachine]) -> None:...
206
+
207
+
208
+
209
+
210
+ class AsyncValueTaskMethodBuilder_GenericClasses(abc.ABCMeta):
211
+ Generic_AsyncValueTaskMethodBuilder_GenericClasses_AsyncValueTaskMethodBuilder_1_TResult = typing.TypeVar('Generic_AsyncValueTaskMethodBuilder_GenericClasses_AsyncValueTaskMethodBuilder_1_TResult')
212
+ def __getitem__(self, types : typing.Type[Generic_AsyncValueTaskMethodBuilder_GenericClasses_AsyncValueTaskMethodBuilder_1_TResult]) -> typing.Type[AsyncValueTaskMethodBuilder_1[Generic_AsyncValueTaskMethodBuilder_GenericClasses_AsyncValueTaskMethodBuilder_1_TResult]]: ...
213
+
214
+ class AsyncValueTaskMethodBuilder(AsyncValueTaskMethodBuilder_0, metaclass =AsyncValueTaskMethodBuilder_GenericClasses): ...
215
+
216
+ class AsyncValueTaskMethodBuilder_0:
217
+ @property
218
+ def Task(self) -> ValueTask: ...
219
+ @staticmethod
220
+ def Create() -> AsyncValueTaskMethodBuilder: ...
221
+ def SetException(self, exception: Exception) -> None: ...
222
+ def SetResult(self) -> None: ...
223
+ def SetStateMachine(self, stateMachine: IAsyncStateMachine) -> None: ...
224
+ # Skipped AwaitOnCompleted due to it being static, abstract and generic.
225
+
226
+ AwaitOnCompleted : AwaitOnCompleted_MethodGroup
227
+ class AwaitOnCompleted_MethodGroup:
228
+ def __getitem__(self, t:typing.Tuple[typing.Type[AwaitOnCompleted_2_T1], typing.Type[AwaitOnCompleted_2_T2]]) -> AwaitOnCompleted_2[AwaitOnCompleted_2_T1, AwaitOnCompleted_2_T2]: ...
229
+
230
+ AwaitOnCompleted_2_T1 = typing.TypeVar('AwaitOnCompleted_2_T1')
231
+ AwaitOnCompleted_2_T2 = typing.TypeVar('AwaitOnCompleted_2_T2')
232
+ class AwaitOnCompleted_2(typing.Generic[AwaitOnCompleted_2_T1, AwaitOnCompleted_2_T2]):
233
+ AwaitOnCompleted_2_TAwaiter = AsyncValueTaskMethodBuilder_0.AwaitOnCompleted_MethodGroup.AwaitOnCompleted_2_T1
234
+ AwaitOnCompleted_2_TStateMachine = AsyncValueTaskMethodBuilder_0.AwaitOnCompleted_MethodGroup.AwaitOnCompleted_2_T2
235
+ def __call__(self, awaiter: clr.Reference[AwaitOnCompleted_2_TAwaiter], stateMachine: clr.Reference[AwaitOnCompleted_2_TStateMachine]) -> None:...
236
+
237
+
238
+ # Skipped AwaitUnsafeOnCompleted due to it being static, abstract and generic.
239
+
240
+ AwaitUnsafeOnCompleted : AwaitUnsafeOnCompleted_MethodGroup
241
+ class AwaitUnsafeOnCompleted_MethodGroup:
242
+ def __getitem__(self, t:typing.Tuple[typing.Type[AwaitUnsafeOnCompleted_2_T1], typing.Type[AwaitUnsafeOnCompleted_2_T2]]) -> AwaitUnsafeOnCompleted_2[AwaitUnsafeOnCompleted_2_T1, AwaitUnsafeOnCompleted_2_T2]: ...
243
+
244
+ AwaitUnsafeOnCompleted_2_T1 = typing.TypeVar('AwaitUnsafeOnCompleted_2_T1')
245
+ AwaitUnsafeOnCompleted_2_T2 = typing.TypeVar('AwaitUnsafeOnCompleted_2_T2')
246
+ class AwaitUnsafeOnCompleted_2(typing.Generic[AwaitUnsafeOnCompleted_2_T1, AwaitUnsafeOnCompleted_2_T2]):
247
+ AwaitUnsafeOnCompleted_2_TAwaiter = AsyncValueTaskMethodBuilder_0.AwaitUnsafeOnCompleted_MethodGroup.AwaitUnsafeOnCompleted_2_T1
248
+ AwaitUnsafeOnCompleted_2_TStateMachine = AsyncValueTaskMethodBuilder_0.AwaitUnsafeOnCompleted_MethodGroup.AwaitUnsafeOnCompleted_2_T2
249
+ def __call__(self, awaiter: clr.Reference[AwaitUnsafeOnCompleted_2_TAwaiter], stateMachine: clr.Reference[AwaitUnsafeOnCompleted_2_TStateMachine]) -> None:...
250
+
251
+
252
+ # Skipped Start due to it being static, abstract and generic.
253
+
254
+ Start : Start_MethodGroup
255
+ class Start_MethodGroup:
256
+ def __getitem__(self, t:typing.Type[Start_1_T1]) -> Start_1[Start_1_T1]: ...
257
+
258
+ Start_1_T1 = typing.TypeVar('Start_1_T1')
259
+ class Start_1(typing.Generic[Start_1_T1]):
260
+ Start_1_TStateMachine = AsyncValueTaskMethodBuilder_0.Start_MethodGroup.Start_1_T1
261
+ def __call__(self, stateMachine: clr.Reference[Start_1_TStateMachine]) -> None:...
262
+
263
+
264
+
265
+
266
+ AsyncValueTaskMethodBuilder_1_TResult = typing.TypeVar('AsyncValueTaskMethodBuilder_1_TResult')
267
+ class AsyncValueTaskMethodBuilder_1(typing.Generic[AsyncValueTaskMethodBuilder_1_TResult]):
268
+ @property
269
+ def Task(self) -> ValueTask_1[AsyncValueTaskMethodBuilder_1_TResult]: ...
270
+ @staticmethod
271
+ def Create() -> AsyncValueTaskMethodBuilder_1[AsyncValueTaskMethodBuilder_1_TResult]: ...
272
+ def SetException(self, exception: Exception) -> None: ...
273
+ def SetResult(self, result: AsyncValueTaskMethodBuilder_1_TResult) -> None: ...
274
+ def SetStateMachine(self, stateMachine: IAsyncStateMachine) -> None: ...
275
+ # Skipped AwaitOnCompleted due to it being static, abstract and generic.
276
+
277
+ AwaitOnCompleted : AwaitOnCompleted_MethodGroup[AsyncValueTaskMethodBuilder_1_TResult]
278
+ AwaitOnCompleted_MethodGroup_AsyncValueTaskMethodBuilder_1_TResult = typing.TypeVar('AwaitOnCompleted_MethodGroup_AsyncValueTaskMethodBuilder_1_TResult')
279
+ class AwaitOnCompleted_MethodGroup(typing.Generic[AwaitOnCompleted_MethodGroup_AsyncValueTaskMethodBuilder_1_TResult]):
280
+ AwaitOnCompleted_MethodGroup_AsyncValueTaskMethodBuilder_1_TResult = AsyncValueTaskMethodBuilder_1.AwaitOnCompleted_MethodGroup_AsyncValueTaskMethodBuilder_1_TResult
281
+ def __getitem__(self, t:typing.Tuple[typing.Type[AwaitOnCompleted_2_T1], typing.Type[AwaitOnCompleted_2_T2]]) -> AwaitOnCompleted_2[AwaitOnCompleted_MethodGroup_AsyncValueTaskMethodBuilder_1_TResult, AwaitOnCompleted_2_T1, AwaitOnCompleted_2_T2]: ...
282
+
283
+ AwaitOnCompleted_2_AsyncValueTaskMethodBuilder_1_TResult = typing.TypeVar('AwaitOnCompleted_2_AsyncValueTaskMethodBuilder_1_TResult')
284
+ AwaitOnCompleted_2_T1 = typing.TypeVar('AwaitOnCompleted_2_T1')
285
+ AwaitOnCompleted_2_T2 = typing.TypeVar('AwaitOnCompleted_2_T2')
286
+ class AwaitOnCompleted_2(typing.Generic[AwaitOnCompleted_2_AsyncValueTaskMethodBuilder_1_TResult, AwaitOnCompleted_2_T1, AwaitOnCompleted_2_T2]):
287
+ AwaitOnCompleted_2_AsyncValueTaskMethodBuilder_1_TResult = AsyncValueTaskMethodBuilder_1.AwaitOnCompleted_MethodGroup.AwaitOnCompleted_2_AsyncValueTaskMethodBuilder_1_TResult
288
+ AwaitOnCompleted_2_TAwaiter = AsyncValueTaskMethodBuilder_1.AwaitOnCompleted_MethodGroup.AwaitOnCompleted_2_T1
289
+ AwaitOnCompleted_2_TStateMachine = AsyncValueTaskMethodBuilder_1.AwaitOnCompleted_MethodGroup.AwaitOnCompleted_2_T2
290
+ def __call__(self, awaiter: clr.Reference[AwaitOnCompleted_2_TAwaiter], stateMachine: clr.Reference[AwaitOnCompleted_2_TStateMachine]) -> None:...
291
+
292
+
293
+ # Skipped AwaitUnsafeOnCompleted due to it being static, abstract and generic.
294
+
295
+ AwaitUnsafeOnCompleted : AwaitUnsafeOnCompleted_MethodGroup[AsyncValueTaskMethodBuilder_1_TResult]
296
+ AwaitUnsafeOnCompleted_MethodGroup_AsyncValueTaskMethodBuilder_1_TResult = typing.TypeVar('AwaitUnsafeOnCompleted_MethodGroup_AsyncValueTaskMethodBuilder_1_TResult')
297
+ class AwaitUnsafeOnCompleted_MethodGroup(typing.Generic[AwaitUnsafeOnCompleted_MethodGroup_AsyncValueTaskMethodBuilder_1_TResult]):
298
+ AwaitUnsafeOnCompleted_MethodGroup_AsyncValueTaskMethodBuilder_1_TResult = AsyncValueTaskMethodBuilder_1.AwaitUnsafeOnCompleted_MethodGroup_AsyncValueTaskMethodBuilder_1_TResult
299
+ def __getitem__(self, t:typing.Tuple[typing.Type[AwaitUnsafeOnCompleted_2_T1], typing.Type[AwaitUnsafeOnCompleted_2_T2]]) -> AwaitUnsafeOnCompleted_2[AwaitUnsafeOnCompleted_MethodGroup_AsyncValueTaskMethodBuilder_1_TResult, AwaitUnsafeOnCompleted_2_T1, AwaitUnsafeOnCompleted_2_T2]: ...
300
+
301
+ AwaitUnsafeOnCompleted_2_AsyncValueTaskMethodBuilder_1_TResult = typing.TypeVar('AwaitUnsafeOnCompleted_2_AsyncValueTaskMethodBuilder_1_TResult')
302
+ AwaitUnsafeOnCompleted_2_T1 = typing.TypeVar('AwaitUnsafeOnCompleted_2_T1')
303
+ AwaitUnsafeOnCompleted_2_T2 = typing.TypeVar('AwaitUnsafeOnCompleted_2_T2')
304
+ class AwaitUnsafeOnCompleted_2(typing.Generic[AwaitUnsafeOnCompleted_2_AsyncValueTaskMethodBuilder_1_TResult, AwaitUnsafeOnCompleted_2_T1, AwaitUnsafeOnCompleted_2_T2]):
305
+ AwaitUnsafeOnCompleted_2_AsyncValueTaskMethodBuilder_1_TResult = AsyncValueTaskMethodBuilder_1.AwaitUnsafeOnCompleted_MethodGroup.AwaitUnsafeOnCompleted_2_AsyncValueTaskMethodBuilder_1_TResult
306
+ AwaitUnsafeOnCompleted_2_TAwaiter = AsyncValueTaskMethodBuilder_1.AwaitUnsafeOnCompleted_MethodGroup.AwaitUnsafeOnCompleted_2_T1
307
+ AwaitUnsafeOnCompleted_2_TStateMachine = AsyncValueTaskMethodBuilder_1.AwaitUnsafeOnCompleted_MethodGroup.AwaitUnsafeOnCompleted_2_T2
308
+ def __call__(self, awaiter: clr.Reference[AwaitUnsafeOnCompleted_2_TAwaiter], stateMachine: clr.Reference[AwaitUnsafeOnCompleted_2_TStateMachine]) -> None:...
309
+
310
+
311
+ # Skipped Start due to it being static, abstract and generic.
312
+
313
+ Start : Start_MethodGroup[AsyncValueTaskMethodBuilder_1_TResult]
314
+ Start_MethodGroup_AsyncValueTaskMethodBuilder_1_TResult = typing.TypeVar('Start_MethodGroup_AsyncValueTaskMethodBuilder_1_TResult')
315
+ class Start_MethodGroup(typing.Generic[Start_MethodGroup_AsyncValueTaskMethodBuilder_1_TResult]):
316
+ Start_MethodGroup_AsyncValueTaskMethodBuilder_1_TResult = AsyncValueTaskMethodBuilder_1.Start_MethodGroup_AsyncValueTaskMethodBuilder_1_TResult
317
+ def __getitem__(self, t:typing.Type[Start_1_T1]) -> Start_1[Start_MethodGroup_AsyncValueTaskMethodBuilder_1_TResult, Start_1_T1]: ...
318
+
319
+ Start_1_AsyncValueTaskMethodBuilder_1_TResult = typing.TypeVar('Start_1_AsyncValueTaskMethodBuilder_1_TResult')
320
+ Start_1_T1 = typing.TypeVar('Start_1_T1')
321
+ class Start_1(typing.Generic[Start_1_AsyncValueTaskMethodBuilder_1_TResult, Start_1_T1]):
322
+ Start_1_AsyncValueTaskMethodBuilder_1_TResult = AsyncValueTaskMethodBuilder_1.Start_MethodGroup.Start_1_AsyncValueTaskMethodBuilder_1_TResult
323
+ Start_1_TStateMachine = AsyncValueTaskMethodBuilder_1.Start_MethodGroup.Start_1_T1
324
+ def __call__(self, stateMachine: clr.Reference[Start_1_TStateMachine]) -> None:...
325
+
326
+
327
+
328
+
329
+ class AsyncVoidMethodBuilder:
330
+ @staticmethod
331
+ def Create() -> AsyncVoidMethodBuilder: ...
332
+ def SetException(self, exception: Exception) -> None: ...
333
+ def SetResult(self) -> None: ...
334
+ def SetStateMachine(self, stateMachine: IAsyncStateMachine) -> None: ...
335
+ # Skipped AwaitOnCompleted due to it being static, abstract and generic.
336
+
337
+ AwaitOnCompleted : AwaitOnCompleted_MethodGroup
338
+ class AwaitOnCompleted_MethodGroup:
339
+ def __getitem__(self, t:typing.Tuple[typing.Type[AwaitOnCompleted_2_T1], typing.Type[AwaitOnCompleted_2_T2]]) -> AwaitOnCompleted_2[AwaitOnCompleted_2_T1, AwaitOnCompleted_2_T2]: ...
340
+
341
+ AwaitOnCompleted_2_T1 = typing.TypeVar('AwaitOnCompleted_2_T1')
342
+ AwaitOnCompleted_2_T2 = typing.TypeVar('AwaitOnCompleted_2_T2')
343
+ class AwaitOnCompleted_2(typing.Generic[AwaitOnCompleted_2_T1, AwaitOnCompleted_2_T2]):
344
+ AwaitOnCompleted_2_TAwaiter = AsyncVoidMethodBuilder.AwaitOnCompleted_MethodGroup.AwaitOnCompleted_2_T1
345
+ AwaitOnCompleted_2_TStateMachine = AsyncVoidMethodBuilder.AwaitOnCompleted_MethodGroup.AwaitOnCompleted_2_T2
346
+ def __call__(self, awaiter: clr.Reference[AwaitOnCompleted_2_TAwaiter], stateMachine: clr.Reference[AwaitOnCompleted_2_TStateMachine]) -> None:...
347
+
348
+
349
+ # Skipped AwaitUnsafeOnCompleted due to it being static, abstract and generic.
350
+
351
+ AwaitUnsafeOnCompleted : AwaitUnsafeOnCompleted_MethodGroup
352
+ class AwaitUnsafeOnCompleted_MethodGroup:
353
+ def __getitem__(self, t:typing.Tuple[typing.Type[AwaitUnsafeOnCompleted_2_T1], typing.Type[AwaitUnsafeOnCompleted_2_T2]]) -> AwaitUnsafeOnCompleted_2[AwaitUnsafeOnCompleted_2_T1, AwaitUnsafeOnCompleted_2_T2]: ...
354
+
355
+ AwaitUnsafeOnCompleted_2_T1 = typing.TypeVar('AwaitUnsafeOnCompleted_2_T1')
356
+ AwaitUnsafeOnCompleted_2_T2 = typing.TypeVar('AwaitUnsafeOnCompleted_2_T2')
357
+ class AwaitUnsafeOnCompleted_2(typing.Generic[AwaitUnsafeOnCompleted_2_T1, AwaitUnsafeOnCompleted_2_T2]):
358
+ AwaitUnsafeOnCompleted_2_TAwaiter = AsyncVoidMethodBuilder.AwaitUnsafeOnCompleted_MethodGroup.AwaitUnsafeOnCompleted_2_T1
359
+ AwaitUnsafeOnCompleted_2_TStateMachine = AsyncVoidMethodBuilder.AwaitUnsafeOnCompleted_MethodGroup.AwaitUnsafeOnCompleted_2_T2
360
+ def __call__(self, awaiter: clr.Reference[AwaitUnsafeOnCompleted_2_TAwaiter], stateMachine: clr.Reference[AwaitUnsafeOnCompleted_2_TStateMachine]) -> None:...
361
+
362
+
363
+ # Skipped Start due to it being static, abstract and generic.
364
+
365
+ Start : Start_MethodGroup
366
+ class Start_MethodGroup:
367
+ def __getitem__(self, t:typing.Type[Start_1_T1]) -> Start_1[Start_1_T1]: ...
368
+
369
+ Start_1_T1 = typing.TypeVar('Start_1_T1')
370
+ class Start_1(typing.Generic[Start_1_T1]):
371
+ Start_1_TStateMachine = AsyncVoidMethodBuilder.Start_MethodGroup.Start_1_T1
372
+ def __call__(self, stateMachine: clr.Reference[Start_1_TStateMachine]) -> None:...
373
+
374
+
375
+
376
+
377
+ class CallConvCdecl:
378
+ def __init__(self) -> None: ...
379
+
380
+
381
+ class CallConvFastcall:
382
+ def __init__(self) -> None: ...
383
+
384
+
385
+ class CallConvMemberFunction:
386
+ def __init__(self) -> None: ...
387
+
388
+
389
+ class CallConvStdcall:
390
+ def __init__(self) -> None: ...
391
+
392
+
393
+ class CallConvSuppressGCTransition:
394
+ def __init__(self) -> None: ...
395
+
396
+
397
+ class CallConvThiscall:
398
+ def __init__(self) -> None: ...
399
+
400
+
401
+ class CallerArgumentExpressionAttribute(Attribute):
402
+ def __init__(self, parameterName: str) -> None: ...
403
+ @property
404
+ def ParameterName(self) -> str: ...
405
+ @property
406
+ def TypeId(self) -> typing.Any: ...
407
+
408
+
409
+ class CallerFilePathAttribute(Attribute):
410
+ def __init__(self) -> None: ...
411
+ @property
412
+ def TypeId(self) -> typing.Any: ...
413
+
414
+
415
+ class CallerLineNumberAttribute(Attribute):
416
+ def __init__(self) -> None: ...
417
+ @property
418
+ def TypeId(self) -> typing.Any: ...
419
+
420
+
421
+ class CallerMemberNameAttribute(Attribute):
422
+ def __init__(self) -> None: ...
423
+ @property
424
+ def TypeId(self) -> typing.Any: ...
425
+
426
+
427
+ class CallSite_GenericClasses(abc.ABCMeta):
428
+ Generic_CallSite_GenericClasses_CallSite_1_T = typing.TypeVar('Generic_CallSite_GenericClasses_CallSite_1_T')
429
+ def __getitem__(self, types : typing.Type[Generic_CallSite_GenericClasses_CallSite_1_T]) -> typing.Type[CallSite_1[Generic_CallSite_GenericClasses_CallSite_1_T]]: ...
430
+
431
+ class CallSite(CallSite_0, metaclass =CallSite_GenericClasses): ...
432
+
433
+ class CallSite_0:
434
+ @property
435
+ def Binder(self) -> CallSiteBinder: ...
436
+ @staticmethod
437
+ def Create(delegateType: typing.Type[typing.Any], binder: CallSiteBinder) -> CallSite: ...
438
+
439
+
440
+ CallSite_1_T = typing.TypeVar('CallSite_1_T')
441
+ class CallSite_1(typing.Generic[CallSite_1_T], CallSite_0):
442
+ Target : CallSite_1_T
443
+ @property
444
+ def Binder(self) -> CallSiteBinder: ...
445
+ @property
446
+ def Update(self) -> CallSite_1_T: ...
447
+ @staticmethod
448
+ def Create(binder: CallSiteBinder) -> CallSite_1[CallSite_1_T]: ...
449
+
450
+
451
+ class CallSiteBinder(abc.ABC):
452
+ @classmethod
453
+ @property
454
+ def UpdateLabel(cls) -> LabelTarget: ...
455
+ @abc.abstractmethod
456
+ def Bind(self, args: Array_1[typing.Any], parameters: ReadOnlyCollection_1[ParameterExpression], returnLabel: LabelTarget) -> Expression: ...
457
+ # Skipped BindDelegate due to it being static, abstract and generic.
458
+
459
+ BindDelegate : BindDelegate_MethodGroup
460
+ class BindDelegate_MethodGroup:
461
+ def __getitem__(self, t:typing.Type[BindDelegate_1_T1]) -> BindDelegate_1[BindDelegate_1_T1]: ...
462
+
463
+ BindDelegate_1_T1 = typing.TypeVar('BindDelegate_1_T1')
464
+ class BindDelegate_1(typing.Generic[BindDelegate_1_T1]):
465
+ BindDelegate_1_T = CallSiteBinder.BindDelegate_MethodGroup.BindDelegate_1_T1
466
+ def __call__(self, site: CallSite_1[BindDelegate_1_T], args: Array_1[typing.Any]) -> BindDelegate_1_T:...
467
+
468
+
469
+
470
+
471
+ class CollectionBuilderAttribute(Attribute):
472
+ def __init__(self, builderType: typing.Type[typing.Any], methodName: str) -> None: ...
473
+ @property
474
+ def BuilderType(self) -> typing.Type[typing.Any]: ...
475
+ @property
476
+ def MethodName(self) -> str: ...
477
+ @property
478
+ def TypeId(self) -> typing.Any: ...
479
+
480
+
481
+ class CompilationRelaxations(typing.SupportsInt):
482
+ @typing.overload
483
+ def __init__(self, value : int) -> None: ...
484
+ @typing.overload
485
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
486
+ def __int__(self) -> int: ...
487
+
488
+ # Values:
489
+ NoStringInterning : CompilationRelaxations # 8
490
+
491
+
492
+ class CompilationRelaxationsAttribute(Attribute):
493
+ @typing.overload
494
+ def __init__(self, relaxations: int) -> None: ...
495
+ @typing.overload
496
+ def __init__(self, relaxations: CompilationRelaxations) -> None: ...
497
+ @property
498
+ def CompilationRelaxations(self) -> int: ...
499
+ @property
500
+ def TypeId(self) -> typing.Any: ...
501
+
502
+
503
+ class CompilerFeatureRequiredAttribute(Attribute):
504
+ def __init__(self, featureName: str) -> None: ...
505
+ RefStructs : str
506
+ RequiredMembers : str
507
+ @property
508
+ def FeatureName(self) -> str: ...
509
+ @property
510
+ def IsOptional(self) -> bool: ...
511
+ @IsOptional.setter
512
+ def IsOptional(self, value: bool) -> bool: ...
513
+ @property
514
+ def TypeId(self) -> typing.Any: ...
515
+
516
+
517
+ class CompilerGeneratedAttribute(Attribute):
518
+ def __init__(self) -> None: ...
519
+ @property
520
+ def TypeId(self) -> typing.Any: ...
521
+
522
+
523
+ class CompilerGlobalScopeAttribute(Attribute):
524
+ def __init__(self) -> None: ...
525
+ @property
526
+ def TypeId(self) -> typing.Any: ...
527
+
528
+
529
+ class ConditionalWeakTable_GenericClasses(abc.ABCMeta):
530
+ Generic_ConditionalWeakTable_GenericClasses_ConditionalWeakTable_2_TKey = typing.TypeVar('Generic_ConditionalWeakTable_GenericClasses_ConditionalWeakTable_2_TKey')
531
+ Generic_ConditionalWeakTable_GenericClasses_ConditionalWeakTable_2_TValue = typing.TypeVar('Generic_ConditionalWeakTable_GenericClasses_ConditionalWeakTable_2_TValue')
532
+ def __getitem__(self, types : typing.Tuple[typing.Type[Generic_ConditionalWeakTable_GenericClasses_ConditionalWeakTable_2_TKey], typing.Type[Generic_ConditionalWeakTable_GenericClasses_ConditionalWeakTable_2_TValue]]) -> typing.Type[ConditionalWeakTable_2[Generic_ConditionalWeakTable_GenericClasses_ConditionalWeakTable_2_TKey, Generic_ConditionalWeakTable_GenericClasses_ConditionalWeakTable_2_TValue]]: ...
533
+
534
+ ConditionalWeakTable : ConditionalWeakTable_GenericClasses
535
+
536
+ ConditionalWeakTable_2_TKey = typing.TypeVar('ConditionalWeakTable_2_TKey')
537
+ ConditionalWeakTable_2_TValue = typing.TypeVar('ConditionalWeakTable_2_TValue')
538
+ class ConditionalWeakTable_2(typing.Generic[ConditionalWeakTable_2_TKey, ConditionalWeakTable_2_TValue], IEnumerable_1[KeyValuePair_2[ConditionalWeakTable_2_TKey, ConditionalWeakTable_2_TValue]]):
539
+ def __init__(self) -> None: ...
540
+ def Add(self, key: ConditionalWeakTable_2_TKey, value: ConditionalWeakTable_2_TValue) -> None: ...
541
+ def AddOrUpdate(self, key: ConditionalWeakTable_2_TKey, value: ConditionalWeakTable_2_TValue) -> None: ...
542
+ def Clear(self) -> None: ...
543
+ def GetOrCreateValue(self, key: ConditionalWeakTable_2_TKey) -> ConditionalWeakTable_2_TValue: ...
544
+ def GetValue(self, key: ConditionalWeakTable_2_TKey, createValueCallback: ConditionalWeakTable_2.CreateValueCallback_2[ConditionalWeakTable_2_TKey, ConditionalWeakTable_2_TValue]) -> ConditionalWeakTable_2_TValue: ...
545
+ def Remove(self, key: ConditionalWeakTable_2_TKey) -> bool: ...
546
+ def TryAdd(self, key: ConditionalWeakTable_2_TKey, value: ConditionalWeakTable_2_TValue) -> bool: ...
547
+ def TryGetValue(self, key: ConditionalWeakTable_2_TKey, value: clr.Reference[ConditionalWeakTable_2_TValue]) -> bool: ...
548
+
549
+ CreateValueCallback_GenericClasses_ConditionalWeakTable_2_TKey = typing.TypeVar('CreateValueCallback_GenericClasses_ConditionalWeakTable_2_TKey')
550
+ CreateValueCallback_GenericClasses_ConditionalWeakTable_2_TValue = typing.TypeVar('CreateValueCallback_GenericClasses_ConditionalWeakTable_2_TValue')
551
+ class CreateValueCallback_GenericClasses(typing.Generic[CreateValueCallback_GenericClasses_ConditionalWeakTable_2_TKey, CreateValueCallback_GenericClasses_ConditionalWeakTable_2_TValue], abc.ABCMeta):
552
+ CreateValueCallback_GenericClasses_ConditionalWeakTable_2_TKey = ConditionalWeakTable_2.CreateValueCallback_GenericClasses_ConditionalWeakTable_2_TKey
553
+ CreateValueCallback_GenericClasses_ConditionalWeakTable_2_TValue = ConditionalWeakTable_2.CreateValueCallback_GenericClasses_ConditionalWeakTable_2_TValue
554
+ def __call__(self) -> ConditionalWeakTable_2.CreateValueCallback_2[CreateValueCallback_GenericClasses_ConditionalWeakTable_2_TKey, CreateValueCallback_GenericClasses_ConditionalWeakTable_2_TValue]: ...
555
+
556
+ CreateValueCallback : CreateValueCallback_GenericClasses[ConditionalWeakTable_2_TKey, ConditionalWeakTable_2_TValue]
557
+
558
+ CreateValueCallback_2_TKey = typing.TypeVar('CreateValueCallback_2_TKey')
559
+ CreateValueCallback_2_TValue = typing.TypeVar('CreateValueCallback_2_TValue')
560
+ class CreateValueCallback_2(typing.Generic[CreateValueCallback_2_TKey, CreateValueCallback_2_TValue], MulticastDelegate):
561
+ CreateValueCallback_2_TKey = ConditionalWeakTable_2.CreateValueCallback_2_TKey
562
+ CreateValueCallback_2_TValue = ConditionalWeakTable_2.CreateValueCallback_2_TValue
563
+ def __init__(self, object: typing.Any, method: int) -> None: ...
564
+ @property
565
+ def Method(self) -> MethodInfo: ...
566
+ @property
567
+ def Target(self) -> typing.Any: ...
568
+ def BeginInvoke(self, key: CreateValueCallback_2_TKey, callback: AsyncCallback, object: typing.Any) -> IAsyncResult: ...
569
+ def EndInvoke(self, result: IAsyncResult) -> CreateValueCallback_2_TValue: ...
570
+ def Invoke(self, key: CreateValueCallback_2_TKey) -> CreateValueCallback_2_TValue: ...
571
+
572
+
573
+
574
+ class ConfiguredAsyncDisposable:
575
+ def DisposeAsync(self) -> ConfiguredValueTaskAwaitable: ...
576
+
577
+
578
+ class ConfiguredCancelableAsyncEnumerable_GenericClasses(abc.ABCMeta):
579
+ Generic_ConfiguredCancelableAsyncEnumerable_GenericClasses_ConfiguredCancelableAsyncEnumerable_1_T = typing.TypeVar('Generic_ConfiguredCancelableAsyncEnumerable_GenericClasses_ConfiguredCancelableAsyncEnumerable_1_T')
580
+ def __getitem__(self, types : typing.Type[Generic_ConfiguredCancelableAsyncEnumerable_GenericClasses_ConfiguredCancelableAsyncEnumerable_1_T]) -> typing.Type[ConfiguredCancelableAsyncEnumerable_1[Generic_ConfiguredCancelableAsyncEnumerable_GenericClasses_ConfiguredCancelableAsyncEnumerable_1_T]]: ...
581
+
582
+ ConfiguredCancelableAsyncEnumerable : ConfiguredCancelableAsyncEnumerable_GenericClasses
583
+
584
+ ConfiguredCancelableAsyncEnumerable_1_T = typing.TypeVar('ConfiguredCancelableAsyncEnumerable_1_T')
585
+ class ConfiguredCancelableAsyncEnumerable_1(typing.Generic[ConfiguredCancelableAsyncEnumerable_1_T]):
586
+ def ConfigureAwait(self, continueOnCapturedContext: bool) -> ConfiguredCancelableAsyncEnumerable_1[ConfiguredCancelableAsyncEnumerable_1_T]: ...
587
+ def GetAsyncEnumerator(self) -> ConfiguredCancelableAsyncEnumerable_1.Enumerator_1[ConfiguredCancelableAsyncEnumerable_1_T]: ...
588
+ def WithCancellation(self, cancellationToken: CancellationToken) -> ConfiguredCancelableAsyncEnumerable_1[ConfiguredCancelableAsyncEnumerable_1_T]: ...
589
+
590
+ Enumerator_GenericClasses_ConfiguredCancelableAsyncEnumerable_1_T = typing.TypeVar('Enumerator_GenericClasses_ConfiguredCancelableAsyncEnumerable_1_T')
591
+ class Enumerator_GenericClasses(typing.Generic[Enumerator_GenericClasses_ConfiguredCancelableAsyncEnumerable_1_T], abc.ABCMeta):
592
+ Enumerator_GenericClasses_ConfiguredCancelableAsyncEnumerable_1_T = ConfiguredCancelableAsyncEnumerable_1.Enumerator_GenericClasses_ConfiguredCancelableAsyncEnumerable_1_T
593
+ def __call__(self) -> ConfiguredCancelableAsyncEnumerable_1.Enumerator_1[Enumerator_GenericClasses_ConfiguredCancelableAsyncEnumerable_1_T]: ...
594
+
595
+ Enumerator : Enumerator_GenericClasses[ConfiguredCancelableAsyncEnumerable_1_T]
596
+
597
+ Enumerator_1_T = typing.TypeVar('Enumerator_1_T')
598
+ class Enumerator_1(typing.Generic[Enumerator_1_T]):
599
+ Enumerator_1_T = ConfiguredCancelableAsyncEnumerable_1.Enumerator_1_T
600
+ @property
601
+ def Current(self) -> Enumerator_1_T: ...
602
+ def DisposeAsync(self) -> ConfiguredValueTaskAwaitable: ...
603
+ def MoveNextAsync(self) -> ConfiguredValueTaskAwaitable_1[bool]: ...
604
+
605
+
606
+
607
+ class ConfiguredTaskAwaitable_GenericClasses(abc.ABCMeta):
608
+ Generic_ConfiguredTaskAwaitable_GenericClasses_ConfiguredTaskAwaitable_1_TResult = typing.TypeVar('Generic_ConfiguredTaskAwaitable_GenericClasses_ConfiguredTaskAwaitable_1_TResult')
609
+ def __getitem__(self, types : typing.Type[Generic_ConfiguredTaskAwaitable_GenericClasses_ConfiguredTaskAwaitable_1_TResult]) -> typing.Type[ConfiguredTaskAwaitable_1[Generic_ConfiguredTaskAwaitable_GenericClasses_ConfiguredTaskAwaitable_1_TResult]]: ...
610
+
611
+ class ConfiguredTaskAwaitable(ConfiguredTaskAwaitable_0, metaclass =ConfiguredTaskAwaitable_GenericClasses): ...
612
+
613
+ class ConfiguredTaskAwaitable_0:
614
+ def GetAwaiter(self) -> ConfiguredTaskAwaitable.ConfiguredTaskAwaiter: ...
615
+
616
+ class ConfiguredTaskAwaiter(ICriticalNotifyCompletion):
617
+ @property
618
+ def IsCompleted(self) -> bool: ...
619
+ def GetResult(self) -> None: ...
620
+ def OnCompleted(self, continuation: Action) -> None: ...
621
+ def UnsafeOnCompleted(self, continuation: Action) -> None: ...
622
+
623
+
624
+
625
+ ConfiguredTaskAwaitable_1_TResult = typing.TypeVar('ConfiguredTaskAwaitable_1_TResult')
626
+ class ConfiguredTaskAwaitable_1(typing.Generic[ConfiguredTaskAwaitable_1_TResult]):
627
+ def GetAwaiter(self) -> ConfiguredTaskAwaitable_1.ConfiguredTaskAwaiter_1[ConfiguredTaskAwaitable_1_TResult]: ...
628
+
629
+ ConfiguredTaskAwaiter_GenericClasses_ConfiguredTaskAwaitable_1_TResult = typing.TypeVar('ConfiguredTaskAwaiter_GenericClasses_ConfiguredTaskAwaitable_1_TResult')
630
+ class ConfiguredTaskAwaiter_GenericClasses(typing.Generic[ConfiguredTaskAwaiter_GenericClasses_ConfiguredTaskAwaitable_1_TResult], abc.ABCMeta):
631
+ ConfiguredTaskAwaiter_GenericClasses_ConfiguredTaskAwaitable_1_TResult = ConfiguredTaskAwaitable_1.ConfiguredTaskAwaiter_GenericClasses_ConfiguredTaskAwaitable_1_TResult
632
+ def __call__(self) -> ConfiguredTaskAwaitable_1.ConfiguredTaskAwaiter_1[ConfiguredTaskAwaiter_GenericClasses_ConfiguredTaskAwaitable_1_TResult]: ...
633
+
634
+ ConfiguredTaskAwaiter : ConfiguredTaskAwaiter_GenericClasses[ConfiguredTaskAwaitable_1_TResult]
635
+
636
+ ConfiguredTaskAwaiter_1_TResult = typing.TypeVar('ConfiguredTaskAwaiter_1_TResult')
637
+ class ConfiguredTaskAwaiter_1(typing.Generic[ConfiguredTaskAwaiter_1_TResult], ICriticalNotifyCompletion):
638
+ ConfiguredTaskAwaiter_1_TResult = ConfiguredTaskAwaitable_1.ConfiguredTaskAwaiter_1_TResult
639
+ @property
640
+ def IsCompleted(self) -> bool: ...
641
+ def GetResult(self) -> ConfiguredTaskAwaiter_1_TResult: ...
642
+ def OnCompleted(self, continuation: Action) -> None: ...
643
+ def UnsafeOnCompleted(self, continuation: Action) -> None: ...
644
+
645
+
646
+
647
+ class ConfiguredValueTaskAwaitable_GenericClasses(abc.ABCMeta):
648
+ Generic_ConfiguredValueTaskAwaitable_GenericClasses_ConfiguredValueTaskAwaitable_1_TResult = typing.TypeVar('Generic_ConfiguredValueTaskAwaitable_GenericClasses_ConfiguredValueTaskAwaitable_1_TResult')
649
+ def __getitem__(self, types : typing.Type[Generic_ConfiguredValueTaskAwaitable_GenericClasses_ConfiguredValueTaskAwaitable_1_TResult]) -> typing.Type[ConfiguredValueTaskAwaitable_1[Generic_ConfiguredValueTaskAwaitable_GenericClasses_ConfiguredValueTaskAwaitable_1_TResult]]: ...
650
+
651
+ class ConfiguredValueTaskAwaitable(ConfiguredValueTaskAwaitable_0, metaclass =ConfiguredValueTaskAwaitable_GenericClasses): ...
652
+
653
+ class ConfiguredValueTaskAwaitable_0:
654
+ def GetAwaiter(self) -> ConfiguredValueTaskAwaitable.ConfiguredValueTaskAwaiter: ...
655
+
656
+ class ConfiguredValueTaskAwaiter(ICriticalNotifyCompletion):
657
+ @property
658
+ def IsCompleted(self) -> bool: ...
659
+ def GetResult(self) -> None: ...
660
+ def OnCompleted(self, continuation: Action) -> None: ...
661
+ def UnsafeOnCompleted(self, continuation: Action) -> None: ...
662
+
663
+
664
+
665
+ ConfiguredValueTaskAwaitable_1_TResult = typing.TypeVar('ConfiguredValueTaskAwaitable_1_TResult')
666
+ class ConfiguredValueTaskAwaitable_1(typing.Generic[ConfiguredValueTaskAwaitable_1_TResult]):
667
+ def GetAwaiter(self) -> ConfiguredValueTaskAwaitable_1.ConfiguredValueTaskAwaiter_1[ConfiguredValueTaskAwaitable_1_TResult]: ...
668
+
669
+ ConfiguredValueTaskAwaiter_GenericClasses_ConfiguredValueTaskAwaitable_1_TResult = typing.TypeVar('ConfiguredValueTaskAwaiter_GenericClasses_ConfiguredValueTaskAwaitable_1_TResult')
670
+ class ConfiguredValueTaskAwaiter_GenericClasses(typing.Generic[ConfiguredValueTaskAwaiter_GenericClasses_ConfiguredValueTaskAwaitable_1_TResult], abc.ABCMeta):
671
+ ConfiguredValueTaskAwaiter_GenericClasses_ConfiguredValueTaskAwaitable_1_TResult = ConfiguredValueTaskAwaitable_1.ConfiguredValueTaskAwaiter_GenericClasses_ConfiguredValueTaskAwaitable_1_TResult
672
+ def __call__(self) -> ConfiguredValueTaskAwaitable_1.ConfiguredValueTaskAwaiter_1[ConfiguredValueTaskAwaiter_GenericClasses_ConfiguredValueTaskAwaitable_1_TResult]: ...
673
+
674
+ ConfiguredValueTaskAwaiter : ConfiguredValueTaskAwaiter_GenericClasses[ConfiguredValueTaskAwaitable_1_TResult]
675
+
676
+ ConfiguredValueTaskAwaiter_1_TResult = typing.TypeVar('ConfiguredValueTaskAwaiter_1_TResult')
677
+ class ConfiguredValueTaskAwaiter_1(typing.Generic[ConfiguredValueTaskAwaiter_1_TResult], ICriticalNotifyCompletion):
678
+ ConfiguredValueTaskAwaiter_1_TResult = ConfiguredValueTaskAwaitable_1.ConfiguredValueTaskAwaiter_1_TResult
679
+ @property
680
+ def IsCompleted(self) -> bool: ...
681
+ def GetResult(self) -> ConfiguredValueTaskAwaiter_1_TResult: ...
682
+ def OnCompleted(self, continuation: Action) -> None: ...
683
+ def UnsafeOnCompleted(self, continuation: Action) -> None: ...
684
+
685
+
686
+
687
+ class ContractHelper(abc.ABC):
688
+ @staticmethod
689
+ def RaiseContractFailedEvent(failureKind: ContractFailureKind, userMessage: str, conditionText: str, innerException: Exception) -> str: ...
690
+ @staticmethod
691
+ def TriggerFailure(kind: ContractFailureKind, displayMessage: str, userMessage: str, conditionText: str, innerException: Exception) -> None: ...
692
+
693
+
694
+ class CreateNewOnMetadataUpdateAttribute(Attribute):
695
+ def __init__(self) -> None: ...
696
+ @property
697
+ def TypeId(self) -> typing.Any: ...
698
+
699
+
700
+ class CustomConstantAttribute(Attribute):
701
+ @property
702
+ def TypeId(self) -> typing.Any: ...
703
+ @property
704
+ def Value(self) -> typing.Any: ...
705
+
706
+
707
+ class DateTimeConstantAttribute(CustomConstantAttribute):
708
+ def __init__(self, ticks: int) -> None: ...
709
+ @property
710
+ def TypeId(self) -> typing.Any: ...
711
+ @property
712
+ def Value(self) -> typing.Any: ...
713
+
714
+
715
+ class DebugInfoGenerator(abc.ABC):
716
+ @staticmethod
717
+ def CreatePdbGenerator() -> DebugInfoGenerator: ...
718
+ @abc.abstractmethod
719
+ def MarkSequencePoint(self, method: LambdaExpression, ilOffset: int, sequencePoint: DebugInfoExpression) -> None: ...
720
+
721
+
722
+ class DecimalConstantAttribute(Attribute):
723
+ # Constructor .ctor(scale : Byte, sign : Byte, hi : Int32, mid : Int32, low : Int32) was skipped since it collides with above method
724
+ def __init__(self, scale: int, sign: int, hi: int, mid: int, low: int) -> None: ...
725
+ @property
726
+ def TypeId(self) -> typing.Any: ...
727
+ @property
728
+ def Value(self) -> Decimal: ...
729
+
730
+
731
+ class DefaultDependencyAttribute(Attribute):
732
+ def __init__(self, loadHintArgument: LoadHint) -> None: ...
733
+ @property
734
+ def LoadHint(self) -> LoadHint: ...
735
+ @property
736
+ def TypeId(self) -> typing.Any: ...
737
+
738
+
739
+ class DefaultInterpolatedStringHandler:
740
+ @typing.overload
741
+ def __init__(self, literalLength: int, formattedCount: int) -> None: ...
742
+ @typing.overload
743
+ def __init__(self, literalLength: int, formattedCount: int, provider: IFormatProvider) -> None: ...
744
+ @typing.overload
745
+ def __init__(self, literalLength: int, formattedCount: int, provider: IFormatProvider, initialBuffer: Span_1[str]) -> None: ...
746
+ def AppendLiteral(self, value: str) -> None: ...
747
+ def ToString(self) -> str: ...
748
+ def ToStringAndClear(self) -> str: ...
749
+ # Skipped AppendFormatted due to it being static, abstract and generic.
750
+
751
+ AppendFormatted : AppendFormatted_MethodGroup
752
+ class AppendFormatted_MethodGroup:
753
+ def __getitem__(self, t:typing.Type[AppendFormatted_1_T1]) -> AppendFormatted_1[AppendFormatted_1_T1]: ...
754
+
755
+ AppendFormatted_1_T1 = typing.TypeVar('AppendFormatted_1_T1')
756
+ class AppendFormatted_1(typing.Generic[AppendFormatted_1_T1]):
757
+ AppendFormatted_1_T = DefaultInterpolatedStringHandler.AppendFormatted_MethodGroup.AppendFormatted_1_T1
758
+ @typing.overload
759
+ def __call__(self, value: AppendFormatted_1_T) -> None:...
760
+ @typing.overload
761
+ def __call__(self, value: AppendFormatted_1_T, alignment: int) -> None:...
762
+ @typing.overload
763
+ def __call__(self, value: AppendFormatted_1_T, format: str) -> None:...
764
+ @typing.overload
765
+ def __call__(self, value: AppendFormatted_1_T, alignment: int, format: str) -> None:...
766
+
767
+ @typing.overload
768
+ def __call__(self, value: ReadOnlySpan_1[str]) -> None:...
769
+ @typing.overload
770
+ def __call__(self, value: str) -> None:...
771
+ @typing.overload
772
+ def __call__(self, value: ReadOnlySpan_1[str], alignment: int = ..., format: str = ...) -> None:...
773
+ @typing.overload
774
+ def __call__(self, value: str, alignment: int = ..., format: str = ...) -> None:...
775
+ @typing.overload
776
+ def __call__(self, value: typing.Any, alignment: int = ..., format: str = ...) -> None:...
777
+
778
+
779
+
780
+ class DependencyAttribute(Attribute):
781
+ def __init__(self, dependentAssemblyArgument: str, loadHintArgument: LoadHint) -> None: ...
782
+ @property
783
+ def DependentAssembly(self) -> str: ...
784
+ @property
785
+ def LoadHint(self) -> LoadHint: ...
786
+ @property
787
+ def TypeId(self) -> typing.Any: ...
788
+
789
+
790
+ class DisablePrivateReflectionAttribute(Attribute):
791
+ def __init__(self) -> None: ...
792
+ @property
793
+ def TypeId(self) -> typing.Any: ...
794
+
795
+
796
+ class DisableRuntimeMarshallingAttribute(Attribute):
797
+ def __init__(self) -> None: ...
798
+ @property
799
+ def TypeId(self) -> typing.Any: ...
800
+
801
+
802
+ class DiscardableAttribute(Attribute):
803
+ def __init__(self) -> None: ...
804
+ @property
805
+ def TypeId(self) -> typing.Any: ...
806
+
807
+
808
+ class EnumeratorCancellationAttribute(Attribute):
809
+ def __init__(self) -> None: ...
810
+ @property
811
+ def TypeId(self) -> typing.Any: ...
812
+
813
+
814
+ class ExtensionAttribute(Attribute):
815
+ def __init__(self) -> None: ...
816
+ @property
817
+ def TypeId(self) -> typing.Any: ...
818
+
819
+
820
+ class FixedAddressValueTypeAttribute(Attribute):
821
+ def __init__(self) -> None: ...
822
+ @property
823
+ def TypeId(self) -> typing.Any: ...
824
+
825
+
826
+ class FixedBufferAttribute(Attribute):
827
+ def __init__(self, elementType: typing.Type[typing.Any], length: int) -> None: ...
828
+ @property
829
+ def ElementType(self) -> typing.Type[typing.Any]: ...
830
+ @property
831
+ def Length(self) -> int: ...
832
+ @property
833
+ def TypeId(self) -> typing.Any: ...
834
+
835
+
836
+ class FormattableStringFactory(abc.ABC):
837
+ @staticmethod
838
+ def Create(format: str, arguments: Array_1[typing.Any]) -> FormattableString: ...
839
+
840
+
841
+ class IAsyncStateMachine(typing.Protocol):
842
+ @abc.abstractmethod
843
+ def MoveNext(self) -> None: ...
844
+ @abc.abstractmethod
845
+ def SetStateMachine(self, stateMachine: IAsyncStateMachine) -> None: ...
846
+
847
+
848
+ class ICastable(typing.Protocol):
849
+ @abc.abstractmethod
850
+ def GetImplType(self, interfaceType: RuntimeTypeHandle) -> RuntimeTypeHandle: ...
851
+ @abc.abstractmethod
852
+ def IsInstanceOfInterface(self, interfaceType: RuntimeTypeHandle, castError: clr.Reference[Exception]) -> bool: ...
853
+
854
+
855
+ class ICriticalNotifyCompletion(INotifyCompletion, typing.Protocol):
856
+ @abc.abstractmethod
857
+ def UnsafeOnCompleted(self, continuation: Action) -> None: ...
858
+
859
+
860
+ class IndexerNameAttribute(Attribute):
861
+ def __init__(self, indexerName: str) -> None: ...
862
+ @property
863
+ def TypeId(self) -> typing.Any: ...
864
+
865
+
866
+ class InlineArrayAttribute(Attribute):
867
+ def __init__(self, length: int) -> None: ...
868
+ @property
869
+ def Length(self) -> int: ...
870
+ @property
871
+ def TypeId(self) -> typing.Any: ...
872
+
873
+
874
+ class INotifyCompletion(typing.Protocol):
875
+ @abc.abstractmethod
876
+ def OnCompleted(self, continuation: Action) -> None: ...
877
+
878
+
879
+ class InternalsVisibleToAttribute(Attribute):
880
+ def __init__(self, assemblyName: str) -> None: ...
881
+ @property
882
+ def AllInternalsVisible(self) -> bool: ...
883
+ @AllInternalsVisible.setter
884
+ def AllInternalsVisible(self, value: bool) -> bool: ...
885
+ @property
886
+ def AssemblyName(self) -> str: ...
887
+ @property
888
+ def TypeId(self) -> typing.Any: ...
889
+
890
+
891
+ class InterpolatedStringHandlerArgumentAttribute(Attribute):
892
+ @typing.overload
893
+ def __init__(self, argument: str) -> None: ...
894
+ @typing.overload
895
+ def __init__(self, arguments: Array_1[str]) -> None: ...
896
+ @property
897
+ def Arguments(self) -> Array_1[str]: ...
898
+ @property
899
+ def TypeId(self) -> typing.Any: ...
900
+
901
+
902
+ class InterpolatedStringHandlerAttribute(Attribute):
903
+ def __init__(self) -> None: ...
904
+ @property
905
+ def TypeId(self) -> typing.Any: ...
906
+
907
+
908
+ class IsByRefLikeAttribute(Attribute):
909
+ def __init__(self) -> None: ...
910
+ @property
911
+ def TypeId(self) -> typing.Any: ...
912
+
913
+
914
+ class IsConst(abc.ABC):
915
+ pass
916
+
917
+
918
+ class IsExternalInit(abc.ABC):
919
+ pass
920
+
921
+
922
+ class IsReadOnlyAttribute(Attribute):
923
+ def __init__(self) -> None: ...
924
+ @property
925
+ def TypeId(self) -> typing.Any: ...
926
+
927
+
928
+ class IStrongBox(typing.Protocol):
929
+ @property
930
+ def Value(self) -> typing.Any: ...
931
+ @Value.setter
932
+ def Value(self, value: typing.Any) -> typing.Any: ...
933
+
934
+
935
+ class IsUnmanagedAttribute(Attribute):
936
+ def __init__(self) -> None: ...
937
+ @property
938
+ def TypeId(self) -> typing.Any: ...
939
+
940
+
941
+ class IsVolatile(abc.ABC):
942
+ pass
943
+
944
+
945
+ class IteratorStateMachineAttribute(StateMachineAttribute):
946
+ def __init__(self, stateMachineType: typing.Type[typing.Any]) -> None: ...
947
+ @property
948
+ def StateMachineType(self) -> typing.Type[typing.Any]: ...
949
+ @property
950
+ def TypeId(self) -> typing.Any: ...
951
+
952
+
953
+ class ITuple(typing.Protocol):
954
+ @property
955
+ def Item(self) -> typing.Any: ...
956
+ @property
957
+ def Length(self) -> int: ...
958
+
959
+
960
+ class LoadHint(typing.SupportsInt):
961
+ @typing.overload
962
+ def __init__(self, value : int) -> None: ...
963
+ @typing.overload
964
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
965
+ def __int__(self) -> int: ...
966
+
967
+ # Values:
968
+ Default : LoadHint # 0
969
+ Always : LoadHint # 1
970
+ Sometimes : LoadHint # 2
971
+
972
+
973
+ class MetadataUpdateOriginalTypeAttribute(Attribute):
974
+ def __init__(self, originalType: typing.Type[typing.Any]) -> None: ...
975
+ @property
976
+ def OriginalType(self) -> typing.Type[typing.Any]: ...
977
+ @property
978
+ def TypeId(self) -> typing.Any: ...
979
+
980
+
981
+ class MethodCodeType(typing.SupportsInt):
982
+ @typing.overload
983
+ def __init__(self, value : int) -> None: ...
984
+ @typing.overload
985
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
986
+ def __int__(self) -> int: ...
987
+
988
+ # Values:
989
+ IL : MethodCodeType # 0
990
+ Native : MethodCodeType # 1
991
+ OPTIL : MethodCodeType # 2
992
+ Runtime : MethodCodeType # 3
993
+
994
+
995
+ class MethodImplAttribute(Attribute):
996
+ @typing.overload
997
+ def __init__(self) -> None: ...
998
+ @typing.overload
999
+ def __init__(self, methodImplOptions: MethodImplOptions) -> None: ...
1000
+ @typing.overload
1001
+ def __init__(self, value: int) -> None: ...
1002
+ MethodCodeType : MethodCodeType
1003
+ @property
1004
+ def TypeId(self) -> typing.Any: ...
1005
+ @property
1006
+ def Value(self) -> MethodImplOptions: ...
1007
+
1008
+
1009
+ class MethodImplOptions(typing.SupportsInt):
1010
+ @typing.overload
1011
+ def __init__(self, value : int) -> None: ...
1012
+ @typing.overload
1013
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
1014
+ def __int__(self) -> int: ...
1015
+
1016
+ # Values:
1017
+ Unmanaged : MethodImplOptions # 4
1018
+ NoInlining : MethodImplOptions # 8
1019
+ ForwardRef : MethodImplOptions # 16
1020
+ Synchronized : MethodImplOptions # 32
1021
+ NoOptimization : MethodImplOptions # 64
1022
+ PreserveSig : MethodImplOptions # 128
1023
+ AggressiveInlining : MethodImplOptions # 256
1024
+ AggressiveOptimization : MethodImplOptions # 512
1025
+ InternalCall : MethodImplOptions # 4096
1026
+
1027
+
1028
+ class ModuleInitializerAttribute(Attribute):
1029
+ def __init__(self) -> None: ...
1030
+ @property
1031
+ def TypeId(self) -> typing.Any: ...
1032
+
1033
+
1034
+ class NullableAttribute(Attribute):
1035
+ @typing.overload
1036
+ def __init__(self, value: int) -> None: ...
1037
+ @typing.overload
1038
+ def __init__(self, value: Array_1[int]) -> None: ...
1039
+ NullableFlags : Array_1[int]
1040
+ @property
1041
+ def TypeId(self) -> typing.Any: ...
1042
+
1043
+
1044
+ class NullableContextAttribute(Attribute):
1045
+ def __init__(self, value: int) -> None: ...
1046
+ Flag : int
1047
+ @property
1048
+ def TypeId(self) -> typing.Any: ...
1049
+
1050
+
1051
+ class NullablePublicOnlyAttribute(Attribute):
1052
+ def __init__(self, value: bool) -> None: ...
1053
+ IncludesInternals : bool
1054
+ @property
1055
+ def TypeId(self) -> typing.Any: ...
1056
+
1057
+
1058
+ class PoolingAsyncValueTaskMethodBuilder_GenericClasses(abc.ABCMeta):
1059
+ Generic_PoolingAsyncValueTaskMethodBuilder_GenericClasses_PoolingAsyncValueTaskMethodBuilder_1_TResult = typing.TypeVar('Generic_PoolingAsyncValueTaskMethodBuilder_GenericClasses_PoolingAsyncValueTaskMethodBuilder_1_TResult')
1060
+ def __getitem__(self, types : typing.Type[Generic_PoolingAsyncValueTaskMethodBuilder_GenericClasses_PoolingAsyncValueTaskMethodBuilder_1_TResult]) -> typing.Type[PoolingAsyncValueTaskMethodBuilder_1[Generic_PoolingAsyncValueTaskMethodBuilder_GenericClasses_PoolingAsyncValueTaskMethodBuilder_1_TResult]]: ...
1061
+
1062
+ class PoolingAsyncValueTaskMethodBuilder(PoolingAsyncValueTaskMethodBuilder_0, metaclass =PoolingAsyncValueTaskMethodBuilder_GenericClasses): ...
1063
+
1064
+ class PoolingAsyncValueTaskMethodBuilder_0:
1065
+ @property
1066
+ def Task(self) -> ValueTask: ...
1067
+ @staticmethod
1068
+ def Create() -> PoolingAsyncValueTaskMethodBuilder: ...
1069
+ def SetException(self, exception: Exception) -> None: ...
1070
+ def SetResult(self) -> None: ...
1071
+ def SetStateMachine(self, stateMachine: IAsyncStateMachine) -> None: ...
1072
+ # Skipped AwaitOnCompleted due to it being static, abstract and generic.
1073
+
1074
+ AwaitOnCompleted : AwaitOnCompleted_MethodGroup
1075
+ class AwaitOnCompleted_MethodGroup:
1076
+ def __getitem__(self, t:typing.Tuple[typing.Type[AwaitOnCompleted_2_T1], typing.Type[AwaitOnCompleted_2_T2]]) -> AwaitOnCompleted_2[AwaitOnCompleted_2_T1, AwaitOnCompleted_2_T2]: ...
1077
+
1078
+ AwaitOnCompleted_2_T1 = typing.TypeVar('AwaitOnCompleted_2_T1')
1079
+ AwaitOnCompleted_2_T2 = typing.TypeVar('AwaitOnCompleted_2_T2')
1080
+ class AwaitOnCompleted_2(typing.Generic[AwaitOnCompleted_2_T1, AwaitOnCompleted_2_T2]):
1081
+ AwaitOnCompleted_2_TAwaiter = PoolingAsyncValueTaskMethodBuilder_0.AwaitOnCompleted_MethodGroup.AwaitOnCompleted_2_T1
1082
+ AwaitOnCompleted_2_TStateMachine = PoolingAsyncValueTaskMethodBuilder_0.AwaitOnCompleted_MethodGroup.AwaitOnCompleted_2_T2
1083
+ def __call__(self, awaiter: clr.Reference[AwaitOnCompleted_2_TAwaiter], stateMachine: clr.Reference[AwaitOnCompleted_2_TStateMachine]) -> None:...
1084
+
1085
+
1086
+ # Skipped AwaitUnsafeOnCompleted due to it being static, abstract and generic.
1087
+
1088
+ AwaitUnsafeOnCompleted : AwaitUnsafeOnCompleted_MethodGroup
1089
+ class AwaitUnsafeOnCompleted_MethodGroup:
1090
+ def __getitem__(self, t:typing.Tuple[typing.Type[AwaitUnsafeOnCompleted_2_T1], typing.Type[AwaitUnsafeOnCompleted_2_T2]]) -> AwaitUnsafeOnCompleted_2[AwaitUnsafeOnCompleted_2_T1, AwaitUnsafeOnCompleted_2_T2]: ...
1091
+
1092
+ AwaitUnsafeOnCompleted_2_T1 = typing.TypeVar('AwaitUnsafeOnCompleted_2_T1')
1093
+ AwaitUnsafeOnCompleted_2_T2 = typing.TypeVar('AwaitUnsafeOnCompleted_2_T2')
1094
+ class AwaitUnsafeOnCompleted_2(typing.Generic[AwaitUnsafeOnCompleted_2_T1, AwaitUnsafeOnCompleted_2_T2]):
1095
+ AwaitUnsafeOnCompleted_2_TAwaiter = PoolingAsyncValueTaskMethodBuilder_0.AwaitUnsafeOnCompleted_MethodGroup.AwaitUnsafeOnCompleted_2_T1
1096
+ AwaitUnsafeOnCompleted_2_TStateMachine = PoolingAsyncValueTaskMethodBuilder_0.AwaitUnsafeOnCompleted_MethodGroup.AwaitUnsafeOnCompleted_2_T2
1097
+ def __call__(self, awaiter: clr.Reference[AwaitUnsafeOnCompleted_2_TAwaiter], stateMachine: clr.Reference[AwaitUnsafeOnCompleted_2_TStateMachine]) -> None:...
1098
+
1099
+
1100
+ # Skipped Start due to it being static, abstract and generic.
1101
+
1102
+ Start : Start_MethodGroup
1103
+ class Start_MethodGroup:
1104
+ def __getitem__(self, t:typing.Type[Start_1_T1]) -> Start_1[Start_1_T1]: ...
1105
+
1106
+ Start_1_T1 = typing.TypeVar('Start_1_T1')
1107
+ class Start_1(typing.Generic[Start_1_T1]):
1108
+ Start_1_TStateMachine = PoolingAsyncValueTaskMethodBuilder_0.Start_MethodGroup.Start_1_T1
1109
+ def __call__(self, stateMachine: clr.Reference[Start_1_TStateMachine]) -> None:...
1110
+
1111
+
1112
+
1113
+
1114
+ PoolingAsyncValueTaskMethodBuilder_1_TResult = typing.TypeVar('PoolingAsyncValueTaskMethodBuilder_1_TResult')
1115
+ class PoolingAsyncValueTaskMethodBuilder_1(typing.Generic[PoolingAsyncValueTaskMethodBuilder_1_TResult]):
1116
+ @property
1117
+ def Task(self) -> ValueTask_1[PoolingAsyncValueTaskMethodBuilder_1_TResult]: ...
1118
+ @staticmethod
1119
+ def Create() -> PoolingAsyncValueTaskMethodBuilder_1[PoolingAsyncValueTaskMethodBuilder_1_TResult]: ...
1120
+ def SetException(self, exception: Exception) -> None: ...
1121
+ def SetResult(self, result: PoolingAsyncValueTaskMethodBuilder_1_TResult) -> None: ...
1122
+ def SetStateMachine(self, stateMachine: IAsyncStateMachine) -> None: ...
1123
+ # Skipped AwaitOnCompleted due to it being static, abstract and generic.
1124
+
1125
+ AwaitOnCompleted : AwaitOnCompleted_MethodGroup[PoolingAsyncValueTaskMethodBuilder_1_TResult]
1126
+ AwaitOnCompleted_MethodGroup_PoolingAsyncValueTaskMethodBuilder_1_TResult = typing.TypeVar('AwaitOnCompleted_MethodGroup_PoolingAsyncValueTaskMethodBuilder_1_TResult')
1127
+ class AwaitOnCompleted_MethodGroup(typing.Generic[AwaitOnCompleted_MethodGroup_PoolingAsyncValueTaskMethodBuilder_1_TResult]):
1128
+ AwaitOnCompleted_MethodGroup_PoolingAsyncValueTaskMethodBuilder_1_TResult = PoolingAsyncValueTaskMethodBuilder_1.AwaitOnCompleted_MethodGroup_PoolingAsyncValueTaskMethodBuilder_1_TResult
1129
+ def __getitem__(self, t:typing.Tuple[typing.Type[AwaitOnCompleted_2_T1], typing.Type[AwaitOnCompleted_2_T2]]) -> AwaitOnCompleted_2[AwaitOnCompleted_MethodGroup_PoolingAsyncValueTaskMethodBuilder_1_TResult, AwaitOnCompleted_2_T1, AwaitOnCompleted_2_T2]: ...
1130
+
1131
+ AwaitOnCompleted_2_PoolingAsyncValueTaskMethodBuilder_1_TResult = typing.TypeVar('AwaitOnCompleted_2_PoolingAsyncValueTaskMethodBuilder_1_TResult')
1132
+ AwaitOnCompleted_2_T1 = typing.TypeVar('AwaitOnCompleted_2_T1')
1133
+ AwaitOnCompleted_2_T2 = typing.TypeVar('AwaitOnCompleted_2_T2')
1134
+ class AwaitOnCompleted_2(typing.Generic[AwaitOnCompleted_2_PoolingAsyncValueTaskMethodBuilder_1_TResult, AwaitOnCompleted_2_T1, AwaitOnCompleted_2_T2]):
1135
+ AwaitOnCompleted_2_PoolingAsyncValueTaskMethodBuilder_1_TResult = PoolingAsyncValueTaskMethodBuilder_1.AwaitOnCompleted_MethodGroup.AwaitOnCompleted_2_PoolingAsyncValueTaskMethodBuilder_1_TResult
1136
+ AwaitOnCompleted_2_TAwaiter = PoolingAsyncValueTaskMethodBuilder_1.AwaitOnCompleted_MethodGroup.AwaitOnCompleted_2_T1
1137
+ AwaitOnCompleted_2_TStateMachine = PoolingAsyncValueTaskMethodBuilder_1.AwaitOnCompleted_MethodGroup.AwaitOnCompleted_2_T2
1138
+ def __call__(self, awaiter: clr.Reference[AwaitOnCompleted_2_TAwaiter], stateMachine: clr.Reference[AwaitOnCompleted_2_TStateMachine]) -> None:...
1139
+
1140
+
1141
+ # Skipped AwaitUnsafeOnCompleted due to it being static, abstract and generic.
1142
+
1143
+ AwaitUnsafeOnCompleted : AwaitUnsafeOnCompleted_MethodGroup[PoolingAsyncValueTaskMethodBuilder_1_TResult]
1144
+ AwaitUnsafeOnCompleted_MethodGroup_PoolingAsyncValueTaskMethodBuilder_1_TResult = typing.TypeVar('AwaitUnsafeOnCompleted_MethodGroup_PoolingAsyncValueTaskMethodBuilder_1_TResult')
1145
+ class AwaitUnsafeOnCompleted_MethodGroup(typing.Generic[AwaitUnsafeOnCompleted_MethodGroup_PoolingAsyncValueTaskMethodBuilder_1_TResult]):
1146
+ AwaitUnsafeOnCompleted_MethodGroup_PoolingAsyncValueTaskMethodBuilder_1_TResult = PoolingAsyncValueTaskMethodBuilder_1.AwaitUnsafeOnCompleted_MethodGroup_PoolingAsyncValueTaskMethodBuilder_1_TResult
1147
+ def __getitem__(self, t:typing.Tuple[typing.Type[AwaitUnsafeOnCompleted_2_T1], typing.Type[AwaitUnsafeOnCompleted_2_T2]]) -> AwaitUnsafeOnCompleted_2[AwaitUnsafeOnCompleted_MethodGroup_PoolingAsyncValueTaskMethodBuilder_1_TResult, AwaitUnsafeOnCompleted_2_T1, AwaitUnsafeOnCompleted_2_T2]: ...
1148
+
1149
+ AwaitUnsafeOnCompleted_2_PoolingAsyncValueTaskMethodBuilder_1_TResult = typing.TypeVar('AwaitUnsafeOnCompleted_2_PoolingAsyncValueTaskMethodBuilder_1_TResult')
1150
+ AwaitUnsafeOnCompleted_2_T1 = typing.TypeVar('AwaitUnsafeOnCompleted_2_T1')
1151
+ AwaitUnsafeOnCompleted_2_T2 = typing.TypeVar('AwaitUnsafeOnCompleted_2_T2')
1152
+ class AwaitUnsafeOnCompleted_2(typing.Generic[AwaitUnsafeOnCompleted_2_PoolingAsyncValueTaskMethodBuilder_1_TResult, AwaitUnsafeOnCompleted_2_T1, AwaitUnsafeOnCompleted_2_T2]):
1153
+ AwaitUnsafeOnCompleted_2_PoolingAsyncValueTaskMethodBuilder_1_TResult = PoolingAsyncValueTaskMethodBuilder_1.AwaitUnsafeOnCompleted_MethodGroup.AwaitUnsafeOnCompleted_2_PoolingAsyncValueTaskMethodBuilder_1_TResult
1154
+ AwaitUnsafeOnCompleted_2_TAwaiter = PoolingAsyncValueTaskMethodBuilder_1.AwaitUnsafeOnCompleted_MethodGroup.AwaitUnsafeOnCompleted_2_T1
1155
+ AwaitUnsafeOnCompleted_2_TStateMachine = PoolingAsyncValueTaskMethodBuilder_1.AwaitUnsafeOnCompleted_MethodGroup.AwaitUnsafeOnCompleted_2_T2
1156
+ def __call__(self, awaiter: clr.Reference[AwaitUnsafeOnCompleted_2_TAwaiter], stateMachine: clr.Reference[AwaitUnsafeOnCompleted_2_TStateMachine]) -> None:...
1157
+
1158
+
1159
+ # Skipped Start due to it being static, abstract and generic.
1160
+
1161
+ Start : Start_MethodGroup[PoolingAsyncValueTaskMethodBuilder_1_TResult]
1162
+ Start_MethodGroup_PoolingAsyncValueTaskMethodBuilder_1_TResult = typing.TypeVar('Start_MethodGroup_PoolingAsyncValueTaskMethodBuilder_1_TResult')
1163
+ class Start_MethodGroup(typing.Generic[Start_MethodGroup_PoolingAsyncValueTaskMethodBuilder_1_TResult]):
1164
+ Start_MethodGroup_PoolingAsyncValueTaskMethodBuilder_1_TResult = PoolingAsyncValueTaskMethodBuilder_1.Start_MethodGroup_PoolingAsyncValueTaskMethodBuilder_1_TResult
1165
+ def __getitem__(self, t:typing.Type[Start_1_T1]) -> Start_1[Start_MethodGroup_PoolingAsyncValueTaskMethodBuilder_1_TResult, Start_1_T1]: ...
1166
+
1167
+ Start_1_PoolingAsyncValueTaskMethodBuilder_1_TResult = typing.TypeVar('Start_1_PoolingAsyncValueTaskMethodBuilder_1_TResult')
1168
+ Start_1_T1 = typing.TypeVar('Start_1_T1')
1169
+ class Start_1(typing.Generic[Start_1_PoolingAsyncValueTaskMethodBuilder_1_TResult, Start_1_T1]):
1170
+ Start_1_PoolingAsyncValueTaskMethodBuilder_1_TResult = PoolingAsyncValueTaskMethodBuilder_1.Start_MethodGroup.Start_1_PoolingAsyncValueTaskMethodBuilder_1_TResult
1171
+ Start_1_TStateMachine = PoolingAsyncValueTaskMethodBuilder_1.Start_MethodGroup.Start_1_T1
1172
+ def __call__(self, stateMachine: clr.Reference[Start_1_TStateMachine]) -> None:...
1173
+
1174
+
1175
+
1176
+
1177
+ class PreserveBaseOverridesAttribute(Attribute):
1178
+ def __init__(self) -> None: ...
1179
+ @property
1180
+ def TypeId(self) -> typing.Any: ...
1181
+
1182
+
1183
+ class ReferenceAssemblyAttribute(Attribute):
1184
+ @typing.overload
1185
+ def __init__(self) -> None: ...
1186
+ @typing.overload
1187
+ def __init__(self, description: str) -> None: ...
1188
+ @property
1189
+ def Description(self) -> str: ...
1190
+ @property
1191
+ def TypeId(self) -> typing.Any: ...
1192
+
1193
+
1194
+ class RefSafetyRulesAttribute(Attribute):
1195
+ def __init__(self, version: int) -> None: ...
1196
+ @property
1197
+ def TypeId(self) -> typing.Any: ...
1198
+ @property
1199
+ def Version(self) -> int: ...
1200
+
1201
+
1202
+ class RequiredMemberAttribute(Attribute):
1203
+ def __init__(self) -> None: ...
1204
+ @property
1205
+ def TypeId(self) -> typing.Any: ...
1206
+
1207
+
1208
+ class RequiresLocationAttribute(Attribute):
1209
+ def __init__(self) -> None: ...
1210
+ @property
1211
+ def TypeId(self) -> typing.Any: ...
1212
+
1213
+
1214
+ class RuntimeCompatibilityAttribute(Attribute):
1215
+ def __init__(self) -> None: ...
1216
+ @property
1217
+ def TypeId(self) -> typing.Any: ...
1218
+ @property
1219
+ def WrapNonExceptionThrows(self) -> bool: ...
1220
+ @WrapNonExceptionThrows.setter
1221
+ def WrapNonExceptionThrows(self, value: bool) -> bool: ...
1222
+
1223
+
1224
+ class RuntimeFeature(abc.ABC):
1225
+ ByRefFields : str
1226
+ CovariantReturnsOfClasses : str
1227
+ DefaultImplementationsOfInterfaces : str
1228
+ NumericIntPtr : str
1229
+ PortablePdb : str
1230
+ UnmanagedSignatureCallingConvention : str
1231
+ VirtualStaticsInInterfaces : str
1232
+ @classmethod
1233
+ @property
1234
+ def IsDynamicCodeCompiled(cls) -> bool: ...
1235
+ @classmethod
1236
+ @property
1237
+ def IsDynamicCodeSupported(cls) -> bool: ...
1238
+ @staticmethod
1239
+ def IsSupported(feature: str) -> bool: ...
1240
+
1241
+
1242
+ class RuntimeHelpers(abc.ABC):
1243
+ @classmethod
1244
+ @property
1245
+ def OffsetToStringData(cls) -> int: ...
1246
+ @staticmethod
1247
+ def AllocateTypeAssociatedMemory(type: typing.Type[typing.Any], size: int) -> int: ...
1248
+ @staticmethod
1249
+ def EnsureSufficientExecutionStack() -> None: ...
1250
+ @staticmethod
1251
+ def Equals(o1: typing.Any, o2: typing.Any) -> bool: ...
1252
+ @staticmethod
1253
+ def ExecuteCodeWithGuaranteedCleanup(code: RuntimeHelpers.TryCode, backoutCode: RuntimeHelpers.CleanupCode, userData: typing.Any) -> None: ...
1254
+ @staticmethod
1255
+ def GetHashCode(o: typing.Any) -> int: ...
1256
+ @staticmethod
1257
+ def GetObjectValue(obj: typing.Any) -> typing.Any: ...
1258
+ @staticmethod
1259
+ def GetUninitializedObject(type: typing.Type[typing.Any]) -> typing.Any: ...
1260
+ @staticmethod
1261
+ def InitializeArray(array: Array, fldHandle: RuntimeFieldHandle) -> None: ...
1262
+ @staticmethod
1263
+ def PrepareConstrainedRegions() -> None: ...
1264
+ @staticmethod
1265
+ def PrepareConstrainedRegionsNoOP() -> None: ...
1266
+ @staticmethod
1267
+ def PrepareContractedDelegate(d: Delegate) -> None: ...
1268
+ @staticmethod
1269
+ def PrepareDelegate(d: Delegate) -> None: ...
1270
+ @staticmethod
1271
+ def ProbeForSufficientStack() -> None: ...
1272
+ @staticmethod
1273
+ def RunClassConstructor(type: RuntimeTypeHandle) -> None: ...
1274
+ @staticmethod
1275
+ def RunModuleConstructor(module: ModuleHandle) -> None: ...
1276
+ @staticmethod
1277
+ def TryEnsureSufficientExecutionStack() -> bool: ...
1278
+ # Skipped CreateSpan due to it being static, abstract and generic.
1279
+
1280
+ CreateSpan : CreateSpan_MethodGroup
1281
+ class CreateSpan_MethodGroup:
1282
+ def __getitem__(self, t:typing.Type[CreateSpan_1_T1]) -> CreateSpan_1[CreateSpan_1_T1]: ...
1283
+
1284
+ CreateSpan_1_T1 = typing.TypeVar('CreateSpan_1_T1')
1285
+ class CreateSpan_1(typing.Generic[CreateSpan_1_T1]):
1286
+ CreateSpan_1_T = RuntimeHelpers.CreateSpan_MethodGroup.CreateSpan_1_T1
1287
+ def __call__(self, fldHandle: RuntimeFieldHandle) -> ReadOnlySpan_1[CreateSpan_1_T]:...
1288
+
1289
+
1290
+ # Skipped GetSubArray due to it being static, abstract and generic.
1291
+
1292
+ GetSubArray : GetSubArray_MethodGroup
1293
+ class GetSubArray_MethodGroup:
1294
+ def __getitem__(self, t:typing.Type[GetSubArray_1_T1]) -> GetSubArray_1[GetSubArray_1_T1]: ...
1295
+
1296
+ GetSubArray_1_T1 = typing.TypeVar('GetSubArray_1_T1')
1297
+ class GetSubArray_1(typing.Generic[GetSubArray_1_T1]):
1298
+ GetSubArray_1_T = RuntimeHelpers.GetSubArray_MethodGroup.GetSubArray_1_T1
1299
+ def __call__(self, array: Array_1[GetSubArray_1_T], range: Range) -> Array_1[GetSubArray_1_T]:...
1300
+
1301
+
1302
+ # Skipped IsReferenceOrContainsReferences due to it being static, abstract and generic.
1303
+
1304
+ IsReferenceOrContainsReferences : IsReferenceOrContainsReferences_MethodGroup
1305
+ class IsReferenceOrContainsReferences_MethodGroup:
1306
+ def __getitem__(self, t:typing.Type[IsReferenceOrContainsReferences_1_T1]) -> IsReferenceOrContainsReferences_1[IsReferenceOrContainsReferences_1_T1]: ...
1307
+
1308
+ IsReferenceOrContainsReferences_1_T1 = typing.TypeVar('IsReferenceOrContainsReferences_1_T1')
1309
+ class IsReferenceOrContainsReferences_1(typing.Generic[IsReferenceOrContainsReferences_1_T1]):
1310
+ IsReferenceOrContainsReferences_1_T = RuntimeHelpers.IsReferenceOrContainsReferences_MethodGroup.IsReferenceOrContainsReferences_1_T1
1311
+ def __call__(self) -> bool:...
1312
+
1313
+
1314
+ # Skipped PrepareMethod due to it being static, abstract and generic.
1315
+
1316
+ PrepareMethod : PrepareMethod_MethodGroup
1317
+ class PrepareMethod_MethodGroup:
1318
+ @typing.overload
1319
+ def __call__(self, method: RuntimeMethodHandle) -> None:...
1320
+ @typing.overload
1321
+ def __call__(self, method: RuntimeMethodHandle, instantiation: Array_1[RuntimeTypeHandle]) -> None:...
1322
+
1323
+
1324
+ class CleanupCode(MulticastDelegate):
1325
+ def __init__(self, object: typing.Any, method: int) -> None: ...
1326
+ @property
1327
+ def Method(self) -> MethodInfo: ...
1328
+ @property
1329
+ def Target(self) -> typing.Any: ...
1330
+ def BeginInvoke(self, userData: typing.Any, exceptionThrown: bool, callback: AsyncCallback, object: typing.Any) -> IAsyncResult: ...
1331
+ def EndInvoke(self, result: IAsyncResult) -> None: ...
1332
+ def Invoke(self, userData: typing.Any, exceptionThrown: bool) -> None: ...
1333
+
1334
+
1335
+ class TryCode(MulticastDelegate):
1336
+ def __init__(self, object: typing.Any, method: int) -> None: ...
1337
+ @property
1338
+ def Method(self) -> MethodInfo: ...
1339
+ @property
1340
+ def Target(self) -> typing.Any: ...
1341
+ def BeginInvoke(self, userData: typing.Any, callback: AsyncCallback, object: typing.Any) -> IAsyncResult: ...
1342
+ def EndInvoke(self, result: IAsyncResult) -> None: ...
1343
+ def Invoke(self, userData: typing.Any) -> None: ...
1344
+
1345
+
1346
+
1347
+ class RuntimeWrappedException(Exception):
1348
+ def __init__(self, thrownObject: typing.Any) -> None: ...
1349
+ @property
1350
+ def Data(self) -> IDictionary: ...
1351
+ @property
1352
+ def HelpLink(self) -> str: ...
1353
+ @HelpLink.setter
1354
+ def HelpLink(self, value: str) -> str: ...
1355
+ @property
1356
+ def HResult(self) -> int: ...
1357
+ @HResult.setter
1358
+ def HResult(self, value: int) -> int: ...
1359
+ @property
1360
+ def InnerException(self) -> Exception: ...
1361
+ @property
1362
+ def Message(self) -> str: ...
1363
+ @property
1364
+ def Source(self) -> str: ...
1365
+ @Source.setter
1366
+ def Source(self, value: str) -> str: ...
1367
+ @property
1368
+ def StackTrace(self) -> str: ...
1369
+ @property
1370
+ def TargetSite(self) -> MethodBase: ...
1371
+ @property
1372
+ def WrappedException(self) -> typing.Any: ...
1373
+ def GetObjectData(self, info: SerializationInfo, context: StreamingContext) -> None: ...
1374
+
1375
+
1376
+ class ScopedRefAttribute(Attribute):
1377
+ def __init__(self) -> None: ...
1378
+ @property
1379
+ def TypeId(self) -> typing.Any: ...
1380
+
1381
+
1382
+ class SkipLocalsInitAttribute(Attribute):
1383
+ def __init__(self) -> None: ...
1384
+ @property
1385
+ def TypeId(self) -> typing.Any: ...
1386
+
1387
+
1388
+ class SpecialNameAttribute(Attribute):
1389
+ def __init__(self) -> None: ...
1390
+ @property
1391
+ def TypeId(self) -> typing.Any: ...
1392
+
1393
+
1394
+ class StateMachineAttribute(Attribute):
1395
+ def __init__(self, stateMachineType: typing.Type[typing.Any]) -> None: ...
1396
+ @property
1397
+ def StateMachineType(self) -> typing.Type[typing.Any]: ...
1398
+ @property
1399
+ def TypeId(self) -> typing.Any: ...
1400
+
1401
+
1402
+ class StringFreezingAttribute(Attribute):
1403
+ def __init__(self) -> None: ...
1404
+ @property
1405
+ def TypeId(self) -> typing.Any: ...
1406
+
1407
+
1408
+ class StrongBox_GenericClasses(abc.ABCMeta):
1409
+ Generic_StrongBox_GenericClasses_StrongBox_1_T = typing.TypeVar('Generic_StrongBox_GenericClasses_StrongBox_1_T')
1410
+ def __getitem__(self, types : typing.Type[Generic_StrongBox_GenericClasses_StrongBox_1_T]) -> typing.Type[StrongBox_1[Generic_StrongBox_GenericClasses_StrongBox_1_T]]: ...
1411
+
1412
+ StrongBox : StrongBox_GenericClasses
1413
+
1414
+ StrongBox_1_T = typing.TypeVar('StrongBox_1_T')
1415
+ class StrongBox_1(typing.Generic[StrongBox_1_T], IStrongBox):
1416
+ @typing.overload
1417
+ def __init__(self) -> None: ...
1418
+ @typing.overload
1419
+ def __init__(self, value: StrongBox_1_T) -> None: ...
1420
+ Value : StrongBox_1_T
1421
+
1422
+
1423
+ class SuppressIldasmAttribute(Attribute):
1424
+ def __init__(self) -> None: ...
1425
+ @property
1426
+ def TypeId(self) -> typing.Any: ...
1427
+
1428
+
1429
+ class SwitchExpressionException(InvalidOperationException):
1430
+ @typing.overload
1431
+ def __init__(self) -> None: ...
1432
+ @typing.overload
1433
+ def __init__(self, innerException: Exception) -> None: ...
1434
+ @typing.overload
1435
+ def __init__(self, message: str) -> None: ...
1436
+ @typing.overload
1437
+ def __init__(self, message: str, innerException: Exception) -> None: ...
1438
+ @typing.overload
1439
+ def __init__(self, unmatchedValue: typing.Any) -> None: ...
1440
+ @property
1441
+ def Data(self) -> IDictionary: ...
1442
+ @property
1443
+ def HelpLink(self) -> str: ...
1444
+ @HelpLink.setter
1445
+ def HelpLink(self, value: str) -> str: ...
1446
+ @property
1447
+ def HResult(self) -> int: ...
1448
+ @HResult.setter
1449
+ def HResult(self, value: int) -> int: ...
1450
+ @property
1451
+ def InnerException(self) -> Exception: ...
1452
+ @property
1453
+ def Message(self) -> str: ...
1454
+ @property
1455
+ def Source(self) -> str: ...
1456
+ @Source.setter
1457
+ def Source(self, value: str) -> str: ...
1458
+ @property
1459
+ def StackTrace(self) -> str: ...
1460
+ @property
1461
+ def TargetSite(self) -> MethodBase: ...
1462
+ @property
1463
+ def UnmatchedValue(self) -> typing.Any: ...
1464
+ def GetObjectData(self, info: SerializationInfo, context: StreamingContext) -> None: ...
1465
+
1466
+
1467
+ class TaskAwaiter_GenericClasses(abc.ABCMeta):
1468
+ Generic_TaskAwaiter_GenericClasses_TaskAwaiter_1_TResult = typing.TypeVar('Generic_TaskAwaiter_GenericClasses_TaskAwaiter_1_TResult')
1469
+ def __getitem__(self, types : typing.Type[Generic_TaskAwaiter_GenericClasses_TaskAwaiter_1_TResult]) -> typing.Type[TaskAwaiter_1[Generic_TaskAwaiter_GenericClasses_TaskAwaiter_1_TResult]]: ...
1470
+
1471
+ class TaskAwaiter(TaskAwaiter_0, metaclass =TaskAwaiter_GenericClasses): ...
1472
+
1473
+ class TaskAwaiter_0(ICriticalNotifyCompletion):
1474
+ @property
1475
+ def IsCompleted(self) -> bool: ...
1476
+ def GetResult(self) -> None: ...
1477
+ def OnCompleted(self, continuation: Action) -> None: ...
1478
+ def UnsafeOnCompleted(self, continuation: Action) -> None: ...
1479
+
1480
+
1481
+ TaskAwaiter_1_TResult = typing.TypeVar('TaskAwaiter_1_TResult')
1482
+ class TaskAwaiter_1(typing.Generic[TaskAwaiter_1_TResult], ICriticalNotifyCompletion):
1483
+ @property
1484
+ def IsCompleted(self) -> bool: ...
1485
+ def GetResult(self) -> TaskAwaiter_1_TResult: ...
1486
+ def OnCompleted(self, continuation: Action) -> None: ...
1487
+ def UnsafeOnCompleted(self, continuation: Action) -> None: ...
1488
+
1489
+
1490
+ class TupleElementNamesAttribute(Attribute):
1491
+ def __init__(self, transformNames: Array_1[str]) -> None: ...
1492
+ @property
1493
+ def TransformNames(self) -> IList_1[str]: ...
1494
+ @property
1495
+ def TypeId(self) -> typing.Any: ...
1496
+
1497
+
1498
+ class TypeForwardedFromAttribute(Attribute):
1499
+ def __init__(self, assemblyFullName: str) -> None: ...
1500
+ @property
1501
+ def AssemblyFullName(self) -> str: ...
1502
+ @property
1503
+ def TypeId(self) -> typing.Any: ...
1504
+
1505
+
1506
+ class TypeForwardedToAttribute(Attribute):
1507
+ def __init__(self, destination: typing.Type[typing.Any]) -> None: ...
1508
+ @property
1509
+ def Destination(self) -> typing.Type[typing.Any]: ...
1510
+ @property
1511
+ def TypeId(self) -> typing.Any: ...
1512
+
1513
+
1514
+ class Unsafe(abc.ABC):
1515
+ # Skipped Add due to it being static, abstract and generic.
1516
+
1517
+ Add : Add_MethodGroup
1518
+ class Add_MethodGroup:
1519
+ def __getitem__(self, t:typing.Type[Add_1_T1]) -> Add_1[Add_1_T1]: ...
1520
+
1521
+ Add_1_T1 = typing.TypeVar('Add_1_T1')
1522
+ class Add_1(typing.Generic[Add_1_T1]):
1523
+ Add_1_T = Unsafe.Add_MethodGroup.Add_1_T1
1524
+ @typing.overload
1525
+ def __call__(self, source: clr.Reference[None], elementOffset: int) -> clr.Reference[None]:...
1526
+ @typing.overload
1527
+ def __call__(self, source: clr.Reference[Add_1_T], elementOffset: int) -> clr.Reference[Add_1_T]:...
1528
+ # Method Add(source : T&, elementOffset : IntPtr) was skipped since it collides with above method
1529
+ @typing.overload
1530
+ def __call__(self, source: clr.Reference[Add_1_T], elementOffset: UIntPtr) -> clr.Reference[Add_1_T]:...
1531
+
1532
+
1533
+ # Skipped AddByteOffset due to it being static, abstract and generic.
1534
+
1535
+ AddByteOffset : AddByteOffset_MethodGroup
1536
+ class AddByteOffset_MethodGroup:
1537
+ def __getitem__(self, t:typing.Type[AddByteOffset_1_T1]) -> AddByteOffset_1[AddByteOffset_1_T1]: ...
1538
+
1539
+ AddByteOffset_1_T1 = typing.TypeVar('AddByteOffset_1_T1')
1540
+ class AddByteOffset_1(typing.Generic[AddByteOffset_1_T1]):
1541
+ AddByteOffset_1_T = Unsafe.AddByteOffset_MethodGroup.AddByteOffset_1_T1
1542
+ @typing.overload
1543
+ def __call__(self, source: clr.Reference[AddByteOffset_1_T], byteOffset: UIntPtr) -> clr.Reference[AddByteOffset_1_T]:...
1544
+ @typing.overload
1545
+ def __call__(self, source: clr.Reference[AddByteOffset_1_T], byteOffset: int) -> clr.Reference[AddByteOffset_1_T]:...
1546
+
1547
+
1548
+ # Skipped AreSame due to it being static, abstract and generic.
1549
+
1550
+ AreSame : AreSame_MethodGroup
1551
+ class AreSame_MethodGroup:
1552
+ def __getitem__(self, t:typing.Type[AreSame_1_T1]) -> AreSame_1[AreSame_1_T1]: ...
1553
+
1554
+ AreSame_1_T1 = typing.TypeVar('AreSame_1_T1')
1555
+ class AreSame_1(typing.Generic[AreSame_1_T1]):
1556
+ AreSame_1_T = Unsafe.AreSame_MethodGroup.AreSame_1_T1
1557
+ def __call__(self, left: clr.Reference[AreSame_1_T], right: clr.Reference[AreSame_1_T]) -> bool:...
1558
+
1559
+
1560
+ # Skipped As due to it being static, abstract and generic.
1561
+
1562
+ As : As_MethodGroup
1563
+ class As_MethodGroup:
1564
+ @typing.overload
1565
+ def __getitem__(self, t:typing.Tuple[typing.Type[As_2_T1], typing.Type[As_2_T2]]) -> As_2[As_2_T1, As_2_T2]: ...
1566
+
1567
+ As_2_T1 = typing.TypeVar('As_2_T1')
1568
+ As_2_T2 = typing.TypeVar('As_2_T2')
1569
+ class As_2(typing.Generic[As_2_T1, As_2_T2]):
1570
+ As_2_TFrom = Unsafe.As_MethodGroup.As_2_T1
1571
+ As_2_TTo = Unsafe.As_MethodGroup.As_2_T2
1572
+ def __call__(self, source: clr.Reference[As_2_TFrom]) -> clr.Reference[As_2_TTo]:...
1573
+
1574
+ @typing.overload
1575
+ def __getitem__(self, t:typing.Type[As_1_T1]) -> As_1[As_1_T1]: ...
1576
+
1577
+ As_1_T1 = typing.TypeVar('As_1_T1')
1578
+ class As_1(typing.Generic[As_1_T1]):
1579
+ As_1_T = Unsafe.As_MethodGroup.As_1_T1
1580
+ def __call__(self, o: typing.Any) -> As_1_T:...
1581
+
1582
+
1583
+ # Skipped AsPointer due to it being static, abstract and generic.
1584
+
1585
+ AsPointer : AsPointer_MethodGroup
1586
+ class AsPointer_MethodGroup:
1587
+ def __getitem__(self, t:typing.Type[AsPointer_1_T1]) -> AsPointer_1[AsPointer_1_T1]: ...
1588
+
1589
+ AsPointer_1_T1 = typing.TypeVar('AsPointer_1_T1')
1590
+ class AsPointer_1(typing.Generic[AsPointer_1_T1]):
1591
+ AsPointer_1_T = Unsafe.AsPointer_MethodGroup.AsPointer_1_T1
1592
+ def __call__(self, value: clr.Reference[AsPointer_1_T]) -> clr.Reference[None]:...
1593
+
1594
+
1595
+ # Skipped AsRef due to it being static, abstract and generic.
1596
+
1597
+ AsRef : AsRef_MethodGroup
1598
+ class AsRef_MethodGroup:
1599
+ def __getitem__(self, t:typing.Type[AsRef_1_T1]) -> AsRef_1[AsRef_1_T1]: ...
1600
+
1601
+ AsRef_1_T1 = typing.TypeVar('AsRef_1_T1')
1602
+ class AsRef_1(typing.Generic[AsRef_1_T1]):
1603
+ AsRef_1_T = Unsafe.AsRef_MethodGroup.AsRef_1_T1
1604
+ @typing.overload
1605
+ def __call__(self, source: clr.Reference[None]) -> clr.Reference[AsRef_1_T]:...
1606
+ @typing.overload
1607
+ def __call__(self, source: clr.Reference[AsRef_1_T]) -> clr.Reference[AsRef_1_T]:...
1608
+
1609
+
1610
+ # Skipped BitCast due to it being static, abstract and generic.
1611
+
1612
+ BitCast : BitCast_MethodGroup
1613
+ class BitCast_MethodGroup:
1614
+ def __getitem__(self, t:typing.Tuple[typing.Type[BitCast_2_T1], typing.Type[BitCast_2_T2]]) -> BitCast_2[BitCast_2_T1, BitCast_2_T2]: ...
1615
+
1616
+ BitCast_2_T1 = typing.TypeVar('BitCast_2_T1')
1617
+ BitCast_2_T2 = typing.TypeVar('BitCast_2_T2')
1618
+ class BitCast_2(typing.Generic[BitCast_2_T1, BitCast_2_T2]):
1619
+ BitCast_2_TFrom = Unsafe.BitCast_MethodGroup.BitCast_2_T1
1620
+ BitCast_2_TTo = Unsafe.BitCast_MethodGroup.BitCast_2_T2
1621
+ def __call__(self, source: BitCast_2_TFrom) -> BitCast_2_TTo:...
1622
+
1623
+
1624
+ # Skipped ByteOffset due to it being static, abstract and generic.
1625
+
1626
+ ByteOffset : ByteOffset_MethodGroup
1627
+ class ByteOffset_MethodGroup:
1628
+ def __getitem__(self, t:typing.Type[ByteOffset_1_T1]) -> ByteOffset_1[ByteOffset_1_T1]: ...
1629
+
1630
+ ByteOffset_1_T1 = typing.TypeVar('ByteOffset_1_T1')
1631
+ class ByteOffset_1(typing.Generic[ByteOffset_1_T1]):
1632
+ ByteOffset_1_T = Unsafe.ByteOffset_MethodGroup.ByteOffset_1_T1
1633
+ def __call__(self, origin: clr.Reference[ByteOffset_1_T], target: clr.Reference[ByteOffset_1_T]) -> int:...
1634
+
1635
+
1636
+ # Skipped Copy due to it being static, abstract and generic.
1637
+
1638
+ Copy : Copy_MethodGroup
1639
+ class Copy_MethodGroup:
1640
+ def __getitem__(self, t:typing.Type[Copy_1_T1]) -> Copy_1[Copy_1_T1]: ...
1641
+
1642
+ Copy_1_T1 = typing.TypeVar('Copy_1_T1')
1643
+ class Copy_1(typing.Generic[Copy_1_T1]):
1644
+ Copy_1_T = Unsafe.Copy_MethodGroup.Copy_1_T1
1645
+ @typing.overload
1646
+ def __call__(self, destination: clr.Reference[None], source: clr.Reference[Copy_1_T]) -> None:...
1647
+ @typing.overload
1648
+ def __call__(self, destination: clr.Reference[Copy_1_T], source: clr.Reference[None]) -> None:...
1649
+
1650
+
1651
+ # Skipped CopyBlock due to it being static, abstract and generic.
1652
+
1653
+ CopyBlock : CopyBlock_MethodGroup
1654
+ class CopyBlock_MethodGroup:
1655
+ @typing.overload
1656
+ def __call__(self, destination: clr.Reference[int], source: clr.Reference[int], byteCount: int) -> None:...
1657
+ @typing.overload
1658
+ def __call__(self, destination: clr.Reference[None], source: clr.Reference[None], byteCount: int) -> None:...
1659
+
1660
+ # Skipped CopyBlockUnaligned due to it being static, abstract and generic.
1661
+
1662
+ CopyBlockUnaligned : CopyBlockUnaligned_MethodGroup
1663
+ class CopyBlockUnaligned_MethodGroup:
1664
+ @typing.overload
1665
+ def __call__(self, destination: clr.Reference[int], source: clr.Reference[int], byteCount: int) -> None:...
1666
+ @typing.overload
1667
+ def __call__(self, destination: clr.Reference[None], source: clr.Reference[None], byteCount: int) -> None:...
1668
+
1669
+ # Skipped InitBlock due to it being static, abstract and generic.
1670
+
1671
+ InitBlock : InitBlock_MethodGroup
1672
+ class InitBlock_MethodGroup:
1673
+ @typing.overload
1674
+ def __call__(self, startAddress: clr.Reference[int], value: int, byteCount: int) -> None:...
1675
+ @typing.overload
1676
+ def __call__(self, startAddress: clr.Reference[None], value: int, byteCount: int) -> None:...
1677
+
1678
+ # Skipped InitBlockUnaligned due to it being static, abstract and generic.
1679
+
1680
+ InitBlockUnaligned : InitBlockUnaligned_MethodGroup
1681
+ class InitBlockUnaligned_MethodGroup:
1682
+ @typing.overload
1683
+ def __call__(self, startAddress: clr.Reference[int], value: int, byteCount: int) -> None:...
1684
+ @typing.overload
1685
+ def __call__(self, startAddress: clr.Reference[None], value: int, byteCount: int) -> None:...
1686
+
1687
+ # Skipped IsAddressGreaterThan due to it being static, abstract and generic.
1688
+
1689
+ IsAddressGreaterThan : IsAddressGreaterThan_MethodGroup
1690
+ class IsAddressGreaterThan_MethodGroup:
1691
+ def __getitem__(self, t:typing.Type[IsAddressGreaterThan_1_T1]) -> IsAddressGreaterThan_1[IsAddressGreaterThan_1_T1]: ...
1692
+
1693
+ IsAddressGreaterThan_1_T1 = typing.TypeVar('IsAddressGreaterThan_1_T1')
1694
+ class IsAddressGreaterThan_1(typing.Generic[IsAddressGreaterThan_1_T1]):
1695
+ IsAddressGreaterThan_1_T = Unsafe.IsAddressGreaterThan_MethodGroup.IsAddressGreaterThan_1_T1
1696
+ def __call__(self, left: clr.Reference[IsAddressGreaterThan_1_T], right: clr.Reference[IsAddressGreaterThan_1_T]) -> bool:...
1697
+
1698
+
1699
+ # Skipped IsAddressLessThan due to it being static, abstract and generic.
1700
+
1701
+ IsAddressLessThan : IsAddressLessThan_MethodGroup
1702
+ class IsAddressLessThan_MethodGroup:
1703
+ def __getitem__(self, t:typing.Type[IsAddressLessThan_1_T1]) -> IsAddressLessThan_1[IsAddressLessThan_1_T1]: ...
1704
+
1705
+ IsAddressLessThan_1_T1 = typing.TypeVar('IsAddressLessThan_1_T1')
1706
+ class IsAddressLessThan_1(typing.Generic[IsAddressLessThan_1_T1]):
1707
+ IsAddressLessThan_1_T = Unsafe.IsAddressLessThan_MethodGroup.IsAddressLessThan_1_T1
1708
+ def __call__(self, left: clr.Reference[IsAddressLessThan_1_T], right: clr.Reference[IsAddressLessThan_1_T]) -> bool:...
1709
+
1710
+
1711
+ # Skipped IsNullRef due to it being static, abstract and generic.
1712
+
1713
+ IsNullRef : IsNullRef_MethodGroup
1714
+ class IsNullRef_MethodGroup:
1715
+ def __getitem__(self, t:typing.Type[IsNullRef_1_T1]) -> IsNullRef_1[IsNullRef_1_T1]: ...
1716
+
1717
+ IsNullRef_1_T1 = typing.TypeVar('IsNullRef_1_T1')
1718
+ class IsNullRef_1(typing.Generic[IsNullRef_1_T1]):
1719
+ IsNullRef_1_T = Unsafe.IsNullRef_MethodGroup.IsNullRef_1_T1
1720
+ def __call__(self, source: clr.Reference[IsNullRef_1_T]) -> bool:...
1721
+
1722
+
1723
+ # Skipped NullRef due to it being static, abstract and generic.
1724
+
1725
+ NullRef : NullRef_MethodGroup
1726
+ class NullRef_MethodGroup:
1727
+ def __getitem__(self, t:typing.Type[NullRef_1_T1]) -> NullRef_1[NullRef_1_T1]: ...
1728
+
1729
+ NullRef_1_T1 = typing.TypeVar('NullRef_1_T1')
1730
+ class NullRef_1(typing.Generic[NullRef_1_T1]):
1731
+ NullRef_1_T = Unsafe.NullRef_MethodGroup.NullRef_1_T1
1732
+ def __call__(self) -> clr.Reference[NullRef_1_T]:...
1733
+
1734
+
1735
+ # Skipped Read due to it being static, abstract and generic.
1736
+
1737
+ Read : Read_MethodGroup
1738
+ class Read_MethodGroup:
1739
+ def __getitem__(self, t:typing.Type[Read_1_T1]) -> Read_1[Read_1_T1]: ...
1740
+
1741
+ Read_1_T1 = typing.TypeVar('Read_1_T1')
1742
+ class Read_1(typing.Generic[Read_1_T1]):
1743
+ Read_1_T = Unsafe.Read_MethodGroup.Read_1_T1
1744
+ def __call__(self, source: clr.Reference[None]) -> Read_1_T:...
1745
+
1746
+
1747
+ # Skipped ReadUnaligned due to it being static, abstract and generic.
1748
+
1749
+ ReadUnaligned : ReadUnaligned_MethodGroup
1750
+ class ReadUnaligned_MethodGroup:
1751
+ def __getitem__(self, t:typing.Type[ReadUnaligned_1_T1]) -> ReadUnaligned_1[ReadUnaligned_1_T1]: ...
1752
+
1753
+ ReadUnaligned_1_T1 = typing.TypeVar('ReadUnaligned_1_T1')
1754
+ class ReadUnaligned_1(typing.Generic[ReadUnaligned_1_T1]):
1755
+ ReadUnaligned_1_T = Unsafe.ReadUnaligned_MethodGroup.ReadUnaligned_1_T1
1756
+ @typing.overload
1757
+ def __call__(self, source: clr.Reference[int]) -> ReadUnaligned_1_T:...
1758
+ @typing.overload
1759
+ def __call__(self, source: clr.Reference[None]) -> ReadUnaligned_1_T:...
1760
+
1761
+
1762
+ # Skipped SizeOf due to it being static, abstract and generic.
1763
+
1764
+ SizeOf : SizeOf_MethodGroup
1765
+ class SizeOf_MethodGroup:
1766
+ def __getitem__(self, t:typing.Type[SizeOf_1_T1]) -> SizeOf_1[SizeOf_1_T1]: ...
1767
+
1768
+ SizeOf_1_T1 = typing.TypeVar('SizeOf_1_T1')
1769
+ class SizeOf_1(typing.Generic[SizeOf_1_T1]):
1770
+ SizeOf_1_T = Unsafe.SizeOf_MethodGroup.SizeOf_1_T1
1771
+ def __call__(self) -> int:...
1772
+
1773
+
1774
+ # Skipped SkipInit due to it being static, abstract and generic.
1775
+
1776
+ SkipInit : SkipInit_MethodGroup
1777
+ class SkipInit_MethodGroup:
1778
+ def __getitem__(self, t:typing.Type[SkipInit_1_T1]) -> SkipInit_1[SkipInit_1_T1]: ...
1779
+
1780
+ SkipInit_1_T1 = typing.TypeVar('SkipInit_1_T1')
1781
+ class SkipInit_1(typing.Generic[SkipInit_1_T1]):
1782
+ SkipInit_1_T = Unsafe.SkipInit_MethodGroup.SkipInit_1_T1
1783
+ def __call__(self, value: clr.Reference[SkipInit_1_T]) -> None:...
1784
+
1785
+
1786
+ # Skipped Subtract due to it being static, abstract and generic.
1787
+
1788
+ Subtract : Subtract_MethodGroup
1789
+ class Subtract_MethodGroup:
1790
+ def __getitem__(self, t:typing.Type[Subtract_1_T1]) -> Subtract_1[Subtract_1_T1]: ...
1791
+
1792
+ Subtract_1_T1 = typing.TypeVar('Subtract_1_T1')
1793
+ class Subtract_1(typing.Generic[Subtract_1_T1]):
1794
+ Subtract_1_T = Unsafe.Subtract_MethodGroup.Subtract_1_T1
1795
+ @typing.overload
1796
+ def __call__(self, source: clr.Reference[None], elementOffset: int) -> clr.Reference[None]:...
1797
+ @typing.overload
1798
+ def __call__(self, source: clr.Reference[Subtract_1_T], elementOffset: int) -> clr.Reference[Subtract_1_T]:...
1799
+ # Method Subtract(source : T&, elementOffset : IntPtr) was skipped since it collides with above method
1800
+ @typing.overload
1801
+ def __call__(self, source: clr.Reference[Subtract_1_T], elementOffset: UIntPtr) -> clr.Reference[Subtract_1_T]:...
1802
+
1803
+
1804
+ # Skipped SubtractByteOffset due to it being static, abstract and generic.
1805
+
1806
+ SubtractByteOffset : SubtractByteOffset_MethodGroup
1807
+ class SubtractByteOffset_MethodGroup:
1808
+ def __getitem__(self, t:typing.Type[SubtractByteOffset_1_T1]) -> SubtractByteOffset_1[SubtractByteOffset_1_T1]: ...
1809
+
1810
+ SubtractByteOffset_1_T1 = typing.TypeVar('SubtractByteOffset_1_T1')
1811
+ class SubtractByteOffset_1(typing.Generic[SubtractByteOffset_1_T1]):
1812
+ SubtractByteOffset_1_T = Unsafe.SubtractByteOffset_MethodGroup.SubtractByteOffset_1_T1
1813
+ @typing.overload
1814
+ def __call__(self, source: clr.Reference[SubtractByteOffset_1_T], byteOffset: int) -> clr.Reference[SubtractByteOffset_1_T]:...
1815
+ @typing.overload
1816
+ def __call__(self, source: clr.Reference[SubtractByteOffset_1_T], byteOffset: UIntPtr) -> clr.Reference[SubtractByteOffset_1_T]:...
1817
+
1818
+
1819
+ # Skipped Unbox due to it being static, abstract and generic.
1820
+
1821
+ Unbox : Unbox_MethodGroup
1822
+ class Unbox_MethodGroup:
1823
+ def __getitem__(self, t:typing.Type[Unbox_1_T1]) -> Unbox_1[Unbox_1_T1]: ...
1824
+
1825
+ Unbox_1_T1 = typing.TypeVar('Unbox_1_T1')
1826
+ class Unbox_1(typing.Generic[Unbox_1_T1]):
1827
+ Unbox_1_T = Unsafe.Unbox_MethodGroup.Unbox_1_T1
1828
+ def __call__(self, box: typing.Any) -> clr.Reference[Unbox_1_T]:...
1829
+
1830
+
1831
+ # Skipped Write due to it being static, abstract and generic.
1832
+
1833
+ Write : Write_MethodGroup
1834
+ class Write_MethodGroup:
1835
+ def __getitem__(self, t:typing.Type[Write_1_T1]) -> Write_1[Write_1_T1]: ...
1836
+
1837
+ Write_1_T1 = typing.TypeVar('Write_1_T1')
1838
+ class Write_1(typing.Generic[Write_1_T1]):
1839
+ Write_1_T = Unsafe.Write_MethodGroup.Write_1_T1
1840
+ def __call__(self, destination: clr.Reference[None], value: Write_1_T) -> None:...
1841
+
1842
+
1843
+ # Skipped WriteUnaligned due to it being static, abstract and generic.
1844
+
1845
+ WriteUnaligned : WriteUnaligned_MethodGroup
1846
+ class WriteUnaligned_MethodGroup:
1847
+ def __getitem__(self, t:typing.Type[WriteUnaligned_1_T1]) -> WriteUnaligned_1[WriteUnaligned_1_T1]: ...
1848
+
1849
+ WriteUnaligned_1_T1 = typing.TypeVar('WriteUnaligned_1_T1')
1850
+ class WriteUnaligned_1(typing.Generic[WriteUnaligned_1_T1]):
1851
+ WriteUnaligned_1_T = Unsafe.WriteUnaligned_MethodGroup.WriteUnaligned_1_T1
1852
+ @typing.overload
1853
+ def __call__(self, destination: clr.Reference[int], value: WriteUnaligned_1_T) -> None:...
1854
+ @typing.overload
1855
+ def __call__(self, destination: clr.Reference[None], value: WriteUnaligned_1_T) -> None:...
1856
+
1857
+
1858
+
1859
+
1860
+ class UnsafeAccessorAttribute(Attribute):
1861
+ def __init__(self, kind: UnsafeAccessorKind) -> None: ...
1862
+ @property
1863
+ def Kind(self) -> UnsafeAccessorKind: ...
1864
+ @property
1865
+ def Name(self) -> str: ...
1866
+ @Name.setter
1867
+ def Name(self, value: str) -> str: ...
1868
+ @property
1869
+ def TypeId(self) -> typing.Any: ...
1870
+
1871
+
1872
+ class UnsafeAccessorKind(typing.SupportsInt):
1873
+ @typing.overload
1874
+ def __init__(self, value : int) -> None: ...
1875
+ @typing.overload
1876
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
1877
+ def __int__(self) -> int: ...
1878
+
1879
+ # Values:
1880
+ Constructor : UnsafeAccessorKind # 0
1881
+ Method : UnsafeAccessorKind # 1
1882
+ StaticMethod : UnsafeAccessorKind # 2
1883
+ Field : UnsafeAccessorKind # 3
1884
+ StaticField : UnsafeAccessorKind # 4
1885
+
1886
+
1887
+ class UnsafeValueTypeAttribute(Attribute):
1888
+ def __init__(self) -> None: ...
1889
+ @property
1890
+ def TypeId(self) -> typing.Any: ...
1891
+
1892
+
1893
+ class ValueTaskAwaiter_GenericClasses(abc.ABCMeta):
1894
+ Generic_ValueTaskAwaiter_GenericClasses_ValueTaskAwaiter_1_TResult = typing.TypeVar('Generic_ValueTaskAwaiter_GenericClasses_ValueTaskAwaiter_1_TResult')
1895
+ def __getitem__(self, types : typing.Type[Generic_ValueTaskAwaiter_GenericClasses_ValueTaskAwaiter_1_TResult]) -> typing.Type[ValueTaskAwaiter_1[Generic_ValueTaskAwaiter_GenericClasses_ValueTaskAwaiter_1_TResult]]: ...
1896
+
1897
+ class ValueTaskAwaiter(ValueTaskAwaiter_0, metaclass =ValueTaskAwaiter_GenericClasses): ...
1898
+
1899
+ class ValueTaskAwaiter_0(ICriticalNotifyCompletion):
1900
+ @property
1901
+ def IsCompleted(self) -> bool: ...
1902
+ def GetResult(self) -> None: ...
1903
+ def OnCompleted(self, continuation: Action) -> None: ...
1904
+ def UnsafeOnCompleted(self, continuation: Action) -> None: ...
1905
+
1906
+
1907
+ ValueTaskAwaiter_1_TResult = typing.TypeVar('ValueTaskAwaiter_1_TResult')
1908
+ class ValueTaskAwaiter_1(typing.Generic[ValueTaskAwaiter_1_TResult], ICriticalNotifyCompletion):
1909
+ @property
1910
+ def IsCompleted(self) -> bool: ...
1911
+ def GetResult(self) -> ValueTaskAwaiter_1_TResult: ...
1912
+ def OnCompleted(self, continuation: Action) -> None: ...
1913
+ def UnsafeOnCompleted(self, continuation: Action) -> None: ...
1914
+
1915
+
1916
+ class YieldAwaitable:
1917
+ def GetAwaiter(self) -> YieldAwaitable.YieldAwaiter: ...
1918
+
1919
+ class YieldAwaiter(ICriticalNotifyCompletion):
1920
+ @property
1921
+ def IsCompleted(self) -> bool: ...
1922
+ def GetResult(self) -> None: ...
1923
+ def OnCompleted(self, continuation: Action) -> None: ...
1924
+ def UnsafeOnCompleted(self, continuation: Action) -> None: ...
1925
+
1926
+