![]() |
VOOZH | about |
dotnet add package Smdn.Fundamental.ByteString --version 3.0.2
NuGet\Install-Package Smdn.Fundamental.ByteString -Version 3.0.2
<PackageReference Include="Smdn.Fundamental.ByteString" Version="3.0.2" />
<PackageVersion Include="Smdn.Fundamental.ByteString" Version="3.0.2" />Directory.Packages.props
<PackageReference Include="Smdn.Fundamental.ByteString" />Project file
paket add Smdn.Fundamental.ByteString --version 3.0.2
#r "nuget: Smdn.Fundamental.ByteString, 3.0.2"
#:package Smdn.Fundamental.ByteString@3.0.2
#addin nuget:?package=Smdn.Fundamental.ByteString&version=3.0.2Install as a Cake Addin
#tool nuget:?package=Smdn.Fundamental.ByteString&version=3.0.2Install as a Cake Tool
Smdn.Fundamental.ByteString.dll
// Smdn.Fundamental.ByteString.dll (Smdn.Fundamental.ByteString-3.0.2)
// Name: Smdn.Fundamental.ByteString
// AssemblyVersion: 3.0.2.0
// InformationalVersion: 3.0.2+e1cdf5b57693d8430e0ef803045395521eb5d6f5
// TargetFramework: .NETStandard,Version=v2.1
// Configuration: Release
using System;
using System.Buffers;
using System.Collections.Generic;
using System.Runtime.Serialization;
using System.Text;
using Smdn.Text;
namespace Smdn.Text {
[TypeForwardedFrom("Smdn, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null")]
[Serializable]
public class ByteString :
IEquatable<ArraySegment<byte>>,
IEquatable<ByteString>,
IEquatable<byte[]>,
IEquatable<string>,
ISerializable
{
protected ByteString(SerializationInfo info, StreamingContext context) {}
public ByteString(ArraySegment<byte> segment, bool asMutable) {}
public ByteString(string @value, bool asMutable) {}
public byte this[int index] { get; set; }
public bool IsEmpty { get; }
public bool IsMutable { get; }
public int Length { get; }
public ArraySegment<byte> Segment { get; }
public static ByteString Concat(bool asMutable, params ByteString[] values) {}
public static ByteString Concat(params ByteString[] values) {}
public static ByteString ConcatImmutable(params ByteString[] values) {}
public static ByteString ConcatMutable(params ByteString[] values) {}
public bool Contains(ByteString @value) {}
public bool Contains(byte[] @value) {}
public void CopyTo(byte[] dest) {}
public void CopyTo(byte[] dest, int destOffset) {}
public void CopyTo(byte[] dest, int destOffset, int count) {}
public void CopyTo(int startIndex, byte[] dest) {}
public void CopyTo(int startIndex, byte[] dest, int destOffset) {}
public void CopyTo(int startIndex, byte[] dest, int destOffset, int count) {}
public static ByteString Create(bool asMutable, byte[] @value, int offset) {}
public static ByteString Create(bool asMutable, byte[] @value, int offset, int count) {}
public static ByteString Create(bool asMutable, params byte[] @value) {}
public static ByteString CreateEmpty() {}
public static ByteString CreateImmutable(byte[] @value, int offset) {}
public static ByteString CreateImmutable(byte[] @value, int offset, int count) {}
public static ByteString CreateImmutable(params byte[] @value) {}
public static ByteString CreateImmutable(string str) {}
public static ByteString CreateImmutable(string str, int startIndex, int count) {}
public static ByteString CreateMutable(byte[] @value, int offset) {}
public static ByteString CreateMutable(byte[] @value, int offset, int count) {}
public static ByteString CreateMutable(params byte[] @value) {}
public static ByteString CreateMutable(string str) {}
public static ByteString CreateMutable(string str, int startIndex, int count) {}
public bool EndsWith(ArraySegment<byte> @value) {}
public bool EndsWith(ByteString @value) {}
public bool EndsWith(byte[] @value) {}
public bool EndsWith(string @value) {}
public bool Equals(ArraySegment<byte> other) {}
public bool Equals(ByteString other) {}
public bool Equals(byte[] other) {}
public bool Equals(string other) {}
public override bool Equals(object obj) {}
public bool EqualsIgnoreCase(ByteString other) {}
public bool EqualsIgnoreCase(string other) {}
public override int GetHashCode() {}
public void GetObjectData(SerializationInfo info, StreamingContext context) {}
public IEnumerable<ByteString> GetSplittedSubstrings(byte delimiter) {}
public IEnumerable<ByteString> GetSplittedSubstrings(char delimiter) {}
public ArraySegment<byte> GetSubSegment(int startIndex) {}
public ArraySegment<byte> GetSubSegment(int startIndex, int count) {}
public int IndexOf(ArraySegment<byte> @value) {}
public int IndexOf(ArraySegment<byte> @value, int startIndex) {}
public int IndexOf(ByteString @value) {}
public int IndexOf(ByteString @value, int startIndex) {}
public int IndexOf(byte @value) {}
public int IndexOf(byte @value, int startIndex) {}
public int IndexOf(byte[] @value) {}
public int IndexOf(byte[] @value, int startIndex) {}
public int IndexOf(char @value) {}
public int IndexOf(char @value, int startIndex) {}
public int IndexOf(string @value) {}
public int IndexOf(string @value, int startIndex) {}
public int IndexOfIgnoreCase(ArraySegment<byte> @value) {}
public int IndexOfIgnoreCase(ArraySegment<byte> @value, int startIndex) {}
public int IndexOfIgnoreCase(ByteString @value) {}
public int IndexOfIgnoreCase(ByteString @value, int startIndex) {}
public int IndexOfIgnoreCase(byte[] @value) {}
public int IndexOfIgnoreCase(byte[] @value, int startIndex) {}
public int IndexOfNot(byte @value) {}
public int IndexOfNot(byte @value, int startIndex) {}
public int IndexOfNot(char @value) {}
public int IndexOfNot(char @value, int startIndex) {}
public static bool IsNullOrEmpty(ByteString str) {}
public bool IsPrefixOf(ArraySegment<byte> @value) {}
public bool IsPrefixOf(ByteString @value) {}
public bool IsPrefixOf(byte[] @value) {}
public static bool IsTerminatedByCRLF(ByteString str) {}
public ByteString[] Split(byte delimiter) {}
public ByteString[] Split(char delimiter) {}
public bool StartsWith(ArraySegment<byte> @value) {}
public bool StartsWith(ByteString @value) {}
public bool StartsWith(byte[] @value) {}
public bool StartsWith(string @value) {}
public bool StartsWithIgnoreCase(ArraySegment<byte> @value) {}
public bool StartsWithIgnoreCase(ByteString @value) {}
public bool StartsWithIgnoreCase(byte[] @value) {}
public ByteString Substring(int startIndex) {}
public ByteString Substring(int startIndex, int count) {}
public byte[] ToArray() {}
public byte[] ToArray(int startIndex) {}
public byte[] ToArray(int startIndex, int count) {}
public static byte[] ToByteArray(string @value) {}
public static byte[] ToByteArray(string @value, int startIndex, int count) {}
public ByteString ToLower() {}
public override string ToString() {}
public static string ToString(ReadOnlySequence<byte> sequence, Encoding encoding = null) {}
public string ToString(Encoding encoding) {}
public string ToString(Encoding encoding, int startIndex) {}
public string ToString(Encoding encoding, int startIndex, int count) {}
public string ToString(int startIndex) {}
public string ToString(int startIndex, int count) {}
public uint ToUInt32() {}
public ulong ToUInt64() {}
public ByteString ToUpper() {}
public ByteString Trim() {}
public ByteString TrimEnd() {}
public ByteString TrimStart() {}
public static ByteString operator + (ByteString x, ByteString y) {}
public static bool operator == (ByteString x, ByteString y) {}
public static bool operator != (ByteString x, ByteString y) {}
public static ByteString operator * (ByteString x, int y) {}
}
[TypeForwardedFrom("Smdn, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null")]
public class ByteStringBuilder {
public ByteStringBuilder() {}
public ByteStringBuilder(int capacity) {}
public ByteStringBuilder(int capacity, int maxCapacity) {}
public byte this[int index] { get; set; }
public int Capacity { get; }
public int Length { get; set; }
public int MaxCapacity { get; }
public ByteStringBuilder Append(ArraySegment<byte> segment) {}
public ByteStringBuilder Append(ByteString str) {}
public ByteStringBuilder Append(ByteString str, int startIndex, int count) {}
public ByteStringBuilder Append(byte b) {}
public ByteStringBuilder Append(byte[] str) {}
public ByteStringBuilder Append(byte[] str, int startIndex, int count) {}
public ByteStringBuilder Append(string str) {}
public ArraySegment<byte> GetSegment() {}
public ArraySegment<byte> GetSegment(int offset, int count) {}
public byte[] ToByteArray() {}
public ByteString ToByteString(bool asMutable) {}
public override string ToString() {}
}
[TypeForwardedFrom("Smdn, Version=3.0.0.0, Culture=neutral, PublicKeyToken=null")]
public static class ByteStringExtensions {
public static ReadOnlySequence<byte> AsReadOnlySequence(this ByteString str) {}
[Obsolete("use Smdn.Buffers.ReadOnlySequenceExtensions.SequenceEqual instead")]
public static bool SequenceEqual(this ReadOnlySequence<byte> sequence, ReadOnlySpan<byte> @value) {}
[Obsolete("use Smdn.Buffers.ReadOnlySequenceExtensions.StartsWith instead")]
public static bool StartsWith(this ReadOnlySequence<byte> sequence, ReadOnlySpan<byte> @value) {}
[Obsolete("use Smdn.Buffers.ReadOnlySequenceExtensions.SequenceEqualIgnoreCase instead", true)]
public static byte[] ToArrayUpperCase(this ReadOnlySequence<byte> sequence) {}
[Obsolete("ByteString will be deprecated in future.")]
public static ByteString ToByteString(this ReadOnlySequence<byte> sequence) {}
}
}
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp1.0 netcoreapp1.0 was computed. netcoreapp1.1 netcoreapp1.1 was computed. netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard1.6 netstandard1.6 is compatible. netstandard2.0 netstandard2.0 was computed. netstandard2.1 netstandard2.1 is compatible. |
| .NET Framework | net45 net45 is compatible. net451 net451 was computed. net452 net452 was computed. net46 net46 was computed. net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen30 tizen30 was computed. tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 1 NuGet packages that depend on Smdn.Fundamental.ByteString:
| Package | Downloads |
|---|---|
|
Smdn
Smdn.dll, fundamental utility and extension library |
This package is not used by any popular GitHub repositories.