-
Notifications
You must be signed in to change notification settings - Fork 551
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2845 from CosmosOS/plug/OSFileStreamStrategy
✨ Plug OSFileStreamStrategy
- Loading branch information
Showing
1 changed file
with
37 additions
and
0 deletions.
There are no files selected for viewing
37 changes: 37 additions & 0 deletions
37
source/Cosmos.System2_Plugs/System/IO/OSFileStreamStrategyImpl.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using IL2CPU.API.Attribs; | ||
|
||
namespace Cosmos.System_Plugs.System.IO | ||
{ | ||
[Plug("System.IO.Strategies.OSFileStreamStrategy, System.Private.CoreLib")] | ||
public class OSFileStreamStrategyImpl | ||
{ | ||
public static void CCtor() | ||
{ | ||
} | ||
|
||
public static void SetLength(object aThis, long len) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public static long Seek(object aThis, long offset, object origin) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public static long get_Length(object aThis) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
|
||
public static bool get_CanSeek(object aThis) | ||
{ | ||
throw new NotImplementedException(); | ||
} | ||
} | ||
} |