Smdn.Fundamental.Stream.Filtering
3.0.1
Prefix Reserved
.NET Standard 1.6
This package targets .NET Standard 1.6. The package is compatible with this framework or higher.
.NET Framework 4.5
This package targets .NET Framework 4.5. The package is compatible with this framework or higher.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Smdn.Fundamental.Stream.Filtering --version 3.0.1
NuGet\Install-Package Smdn.Fundamental.Stream.Filtering -Version 3.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Smdn.Fundamental.Stream.Filtering" Version="3.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Smdn.Fundamental.Stream.Filtering --version 3.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Smdn.Fundamental.Stream.Filtering, 3.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Smdn.Fundamental.Stream.Filtering as a Cake Addin #addin nuget:?package=Smdn.Fundamental.Stream.Filtering&version=3.0.1 // Install Smdn.Fundamental.Stream.Filtering as a Cake Tool #tool nuget:?package=Smdn.Fundamental.Stream.Filtering&version=3.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Smdn.Fundamental.Stream.Filtering
Smdn.Fundamental.Stream.Filtering.dll
API List
// Smdn.Fundamental.Stream.Filtering.dll (Smdn.Fundamental.Stream.Filtering-3.0.1)
// Name: Smdn.Fundamental.Stream.Filtering
// AssemblyVersion: 3.0.1.0
// InformationalVersion: 3.0.1+6c46ed4e09b48a74bff0ead44a7ab8664fcf0ef8
// TargetFramework: .NETStandard,Version=v2.1
// Configuration: Release
using System;
using System.Collections.Generic;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
using Smdn.IO.Streams.Filtering;
namespace Smdn.IO.Streams.Filtering {
[TypeForwardedFrom("Smdn, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null")]
public class FilterStream : Stream {
public delegate void FilterAction(Span<byte> buffer, long offsetWithinFilter);
public interface IFilter {
long Length { get; }
long Offset { get; }
void Apply(Span<byte> buffer, long offsetWithinFilter);
}
public sealed class BitwiseAndFilter : SingleValueFilter {
public BitwiseAndFilter(long offset, long length, byte @value) {}
public override void Apply(Span<byte> buffer, long offsetWithinFilter) {}
}
public sealed class BitwiseNotFilter : Filter {
public BitwiseNotFilter(long offset, long length) {}
public override void Apply(Span<byte> buffer, long offsetWithinFilter) {}
}
public sealed class BitwiseOrFilter : SingleValueFilter {
public BitwiseOrFilter(long offset, long length, byte @value) {}
public override void Apply(Span<byte> buffer, long offsetWithinFilter) {}
}
public sealed class BitwiseXorFilter : SingleValueFilter {
public BitwiseXorFilter(long offset, long length, byte @value) {}
public override void Apply(Span<byte> buffer, long offsetWithinFilter) {}
}
public sealed class FillFilter : SingleValueFilter {
public FillFilter(long offset, long length, byte @value) {}
public override void Apply(Span<byte> buffer, long offsetWithinFilter) {}
}
public abstract class Filter : IFilter {
protected Filter(long offset, long length) {}
public long Length { get; }
public long Offset { get; }
public abstract void Apply(Span<byte> buffer, long offsetWithinFilter);
}
public abstract class SingleValueFilter : Filter {
protected SingleValueFilter(long offset, long length, byte @value) {}
public byte Value { get; }
}
public sealed class ZeroFilter : Filter {
public ZeroFilter(long offset, long length) {}
public override void Apply(Span<byte> buffer, long offsetWithinFilter) {}
}
protected const int DefaultBufferSize = 1024;
protected const bool DefaultLeaveStreamOpen = false;
protected const int MinimumBufferSize = 2;
public static readonly FilterStream.IFilter NullFilter; // = "Smdn.IO.Streams.Filtering.FilterStream+NullFilterImpl"
public FilterStream(Stream stream, FilterStream.IFilter filter, int bufferSize = 1024, bool leaveStreamOpen = false) {}
public FilterStream(Stream stream, IEnumerable<FilterStream.IFilter> filters, int bufferSize = 1024, bool leaveStreamOpen = false) {}
public override bool CanRead { get; }
public override bool CanSeek { get; }
public override bool CanTimeout { get; }
public override bool CanWrite { get; }
public IReadOnlyList<FilterStream.IFilter> Filters { get; protected set; }
public override long Length { get; }
public override long Position { get; set; }
public override void Close() {}
public static FilterStream.Filter CreateFilter(long offset, long length, FilterStream.FilterAction filter) {}
public override void Flush() {}
public override Task FlushAsync(CancellationToken cancellationToken) {}
public override int Read(byte[] buffer, int offset, int count) {}
public override Task<int> ReadAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken = default) {}
public override ValueTask<int> ReadAsync(Memory<byte> buffer, CancellationToken cancellationToken = default) {}
[Obsolete("use Memory<byte> version instead")]
protected virtual Task<int> ReadAsyncUnchecked(byte[] buffer, int offset, int count, CancellationToken cancellationToken) {}
protected virtual ValueTask<int> ReadAsyncUnchecked(Memory<byte> destination, CancellationToken cancellationToken) {}
protected virtual int ReadUnchecked(byte[] buffer, int offset, int count) {}
public override long Seek(long offset, SeekOrigin origin) {}
public override void SetLength(long @value) {}
protected void ThrowIfDisposed() {}
public override void Write(byte[] buffer, int offset, int count) {}
public override Task WriteAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken) {}
public override ValueTask WriteAsync(ReadOnlyMemory<byte> buffer, CancellationToken cancellationToken = default) {}
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp1.0 was computed. netcoreapp1.1 was computed. netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard1.6 is compatible. netstandard2.0 was computed. netstandard2.1 is compatible. |
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen30 was computed. tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.5
- Smdn.Fundamental.Exception (>= 3.0.0 && < 4.0.0)
- System.Memory (>= 4.5.4)
-
.NETStandard 1.6
- NETStandard.Library (>= 1.6.1)
- Smdn.Fundamental.Exception (>= 3.0.0 && < 4.0.0)
- System.Memory (>= 4.5.4)
-
.NETStandard 2.1
- Smdn.Fundamental.Exception (>= 3.0.0 && < 4.0.0)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Smdn.Fundamental.Stream.Filtering:
Package | Downloads |
---|---|
Smdn
Smdn.dll, fundamental utility and extension library |
GitHub repositories
This package is not used by any popular GitHub repositories.