FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonnet/src/runtime/StateSerialization/PythonNetState.cs at master · JakeJP/pythonnet · GitHub
JakeJP
/
pythonnet
Public
forked from
pythonnet/pythonnet
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
pythonnet
/
src
/
runtime
/
StateSerialization
/
PythonNetState.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
17 lines (14 loc) · 619 Bytes
Breadcrumbs
pythonnet
/
src
/
runtime
/
StateSerialization
/
PythonNetState.cs
Copy path
File metadata and controls
17 lines (14 loc) · 619 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using
System
;
namespace
Python
.
Runtime
.
StateSerialization
;
// Workaround for the lack of required properties: https://github.com/dotnet/csharplang/issues/3630
// Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
#pragma warning disable
CS8618
[
Serializable
]
internal
class
PythonNetState
{
public
MetatypeState
Metatype
{
get
;
init
;
}
public
SharedObjectsState
SharedObjects
{
get
;
init
;
}
public
TypeManagerState
Types
{
get
;
init
;
}
public
ClassManagerState
Classes
{
get
;
init
;
}
public
ImportHookState
ImportHookState
{
get
;
init
;
}
}
Back
|
FazBrowse Home
|
New Git URL