コード例 #1
0
ファイル: ByteDevice.cs プロジェクト: Spaxys/Kean
 public static IByteDevice Open(Uri.Locator input, Uri.Locator output)
 {
     return(ByteDeviceCombiner.Open(ByteDevice.Open(input), ByteDevice.Create(output)));
 }
コード例 #2
0
ファイル: ByteDeviceCombiner.cs プロジェクト: Spaxys/Kean
 public static IByteDevice Wrap(IByteOutDevice outDevice)
 {
     return(ByteDeviceCombiner.Wrap(null, outDevice));
 }
コード例 #3
0
ファイル: ByteDeviceCombiner.cs プロジェクト: Spaxys/Kean
 public static IByteDevice Wrap(IByteInDevice inDevice)
 {
     return(ByteDeviceCombiner.Wrap(inDevice, null));
 }
コード例 #4
0
ファイル: ByteDeviceCombiner.cs プロジェクト: Spaxys/Kean
 public static IByteDevice Open(System.IO.Stream input, System.IO.Stream output)
 {
     return(ByteDeviceCombiner.Open(ByteDevice.Open(input), ByteDevice.Open(output)));
 }
コード例 #5
0
ファイル: ByteDeviceCombiner.cs プロジェクト: Spaxys/Kean
 public static IByteDevice Open(IByteOutDevice outDevice)
 {
     return(ByteDeviceCombiner.Open(null, outDevice));
 }
コード例 #6
0
ファイル: ByteDeviceCombiner.cs プロジェクト: Spaxys/Kean
 public static IByteDevice Open(IByteInDevice inDevice)
 {
     return(ByteDeviceCombiner.Open(inDevice, null));
 }