Click or drag to resize
Akka.NETByteString Class
TBD
A rope-like immutable data structure containing bytes. The goal of this structure is to reduce copying of arrays when concatenating and slicing sequences of bytes, and also providing a thread safe way of working with bytes.
Inheritance Hierarchy

Namespace:  Akka.IO
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public abstract class ByteString : IReadOnlyList<byte>, 
	IReadOnlyCollection<byte>, IEnumerable<byte>, IEnumerable, IEquatable<ByteString>

The ByteString type exposes the following members.

Constructors
  NameDescription
Protected methodByteString
Initializes a new instance of the ByteString class
Top
Properties
  NameDescription
Public propertyCount
TBD
Public propertyHead
TBD
Public propertyIsEmpty
TBD
Public propertyItem
TBD
Public propertyLast
TBD
Public propertyNonEmpty
TBD
Top
Methods
  NameDescription
Public methodAsByteBuffer
TBD
Public methodCompact
TBD
Public methodConcat
TBD
Public methodCopyToBuffer
TBD
Public methodStatic memberCreate(Byte)
TBD
Public methodStatic memberCreate(ByteBuffer)
TBD
Public methodStatic memberCreate(Byte, Int32, Int32)
TBD
Public methodDecodeString
TBD
Public methodDecodeString(Encoding)
TBD
Public methodDrop
TBD
Public methodDropRight
TBD
Public methodDropWhile
TBD
Public methodEquals(Object)
Determines whether the specified object is equal to the current object.
(Overrides ObjectEquals(Object).)
Public methodEquals(ByteString)
Indicates whether the current object is equal to another object of the same type.
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodFromArray(Byte)
Creates a new ByteString by copying a byte array.
Public methodFromArray(Byte, Int32, Int32)
Creates a new ByteString by copying length bytes starting at offset from an Array.
Public methodStatic memberFromByteBuffer
TBD
Public methodStatic memberFromString(String)
Creates a new ByteString which will contain the UTF-8 representation of the given String
Public methodStatic memberFromString(String, Encoding)
Creates a new ByteString which will contain the representation of the given String in the given charset
Public methodGetEnumerator
N/A
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIndexOf
TBD
Public methodIndexWhere
TBD
Public methodInit
TBD
Public methodIsCompact
TBD
Public methodIterator
TBD
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodnewBuilder
TBD
Public methodStatic memberNewBuilder
TBD
Public methodSlice
TBD
Public methodSpan
TBD
Public methodSplitAt
TBD
Public methodTail
TBD
Public methodTake
TBD
Public methodTakeRight
TBD
Public methodTakeWhile
TBD
Public methodToArray
TBD
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Operators
  NameDescription
Public operatorStatic memberAddition
TBD
Top
Fields
  NameDescription
Public fieldStatic memberEmpty
TBD
Top
Extension Methods
  NameDescription
Public Extension MethodAsInstanceOfT
TBD
(Defined by Extensions.)
Public Extension MethodConcatByte
TBD
(Defined by Extensions.)
Public Extension MethodDropByte
Scala alias for Skip
(Defined by Extensions.)
Public Extension MethodForEachByte
Applies a delegate action to all elements of this enumerable.
(Defined by Extensions.)
Public Extension MethodGroupedByte
Partitions elements in fixed size Credits to http://stackoverflow.com/a/13731854/465132
(Defined by EnumerableExtensions.)
Public Extension MethodHeadByte
Scala alias for FirstOrDefault
(Defined by Extensions.)
Public Extension MethodIteratorByte
TBD
(Defined by EnumeratorExtensions.)
Public Extension MethodMatchOverloaded.
Matches the specified target.
(Defined by PatternMatch.)
Public Extension MethodMatchTOverloaded.
Matches the specified target and return a result of target processing.
(Defined by PatternMatch.)
Public Extension MethodShouldBeByte
TBD
(Defined by AkkaSpecExtensions.)
Public Extension MethodShouldHaveCountByte
TBD
(Defined by AkkaSpecExtensions.)
Public Extension MethodShouldOnlyContainInOrderByte
TBD
(Defined by AkkaSpecExtensions.)
Public Extension MethodTakeRightByte
Selects last n elements.
(Defined by Extensions.)
Top
See Also