FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
CadPythonShell/PythonConsoleControl/PythonOutputStream.cs at dev · chuongmep/CadPythonShell · GitHub
chuongmep
/
CadPythonShell
Public
Notifications
You must be signed in to change notification settings
Fork
23
Star
119
Code
Issues
3
Pull requests
0
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
CadPythonShell
/
PythonConsoleControl
/
PythonOutputStream.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
70 lines (57 loc) · 1.46 KB
Breadcrumbs
CadPythonShell
/
PythonConsoleControl
/
PythonOutputStream.cs
Copy path
File metadata and controls
70 lines (57 loc) · 1.46 KB
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
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
// Copyright (c) 2010 Joe Moorhouse
using
System
.
IO
;
using
System
.
Text
;
namespace
PythonConsoleControl
{
public
class
PythonOutputStream
:
Stream
{
private
PythonTextEditor
textEditor
;
public
PythonOutputStream
(
PythonTextEditor
textEditor
)
{
this
.
textEditor
=
textEditor
;
}
public
override
bool
CanRead
{
get
{
return
false
;
}
}
public
override
bool
CanSeek
{
get
{
return
false
;
}
}
public
override
bool
CanWrite
{
get
{
return
true
;
}
}
public
override
long
Length
{
get
{
return
0
;
}
}
public
override
long
Position
{
get
{
return
0
;
}
set
{
}
}
public
override
void
Flush
(
)
{
}
public
override
long
Seek
(
long
offset
,
SeekOrigin
origin
)
{
return
0
;
}
public
override
void
SetLength
(
long
value
)
{
}
public
override
int
Read
(
byte
[
]
buffer
,
int
offset
,
int
count
)
{
return
0
;
}
/// <summary>
/// Assumes the bytes are UTF8 and writes them to the text editor.
/// </summary>
public
override
void
Write
(
byte
[
]
buffer
,
int
offset
,
int
count
)
{
string
text
=
UTF8Encoding
.
UTF8
.
GetString
(
buffer
,
offset
,
count
)
;
textEditor
.
Write
(
text
)
;
}
}
}
Back
|
FazBrowse Home
|
New Git URL