BinaryClient Class

MySQL Connector/Net

BinaryClient Class
Implementation of memcached binary client protocol.
Inheritance Hierarchy
SystemObject  MySql.Data.MySqlClient.MemcachedClient
    MySql.Data.MySqlClient.MemcachedBinaryClient

Namespace: MySql.Data.MySqlClient.Memcached
Assembly: MySql.Data (in MySql.Data.dll) Version: 6.9.9
Syntax
public class BinaryClient : Client
Public Class BinaryClient
	Inherits Client
public ref class BinaryClient : public Client
type BinaryClient =  
    class
        inherit Client
    end

The BinaryClient type exposes the following members.

Constructors
  NameDescription
Public methodBinaryClient
Top
Methods
  NameDescription
Public methodAdd (Overrides ClientAdd(String, Object, TimeSpan).)
Public methodAppend (Overrides ClientAppend(String, Object).)
Public methodCas (Overrides ClientCas(String, Object, TimeSpan, UInt64).)
Public methodClose
Closes the client connection.
(Inherited from Client.)
Public methodDecrement (Overrides ClientDecrement(String, Int32).)
Public methodDelete (Overrides ClientDelete(String).)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
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 methodFlushAll (Overrides ClientFlushAll(TimeSpan).)
Public methodGet (Overrides ClientGet(String).)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodIncrement (Overrides ClientIncrement(String, Int32).)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodOpen
Opens the client connection.
(Inherited from Client.)
Public methodPrepend (Overrides ClientPrepend(String, Object).)
Public methodReplace (Overrides ClientReplace(String, Object, TimeSpan).)
Public methodSet (Overrides ClientSet(String, Object, TimeSpan).)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Fields
  NameDescription
Protected fieldport
The port used by the connection.
(Inherited from Client.)
Protected fieldserver
The server DNS or IP address used by the connection.
(Inherited from Client.)
Protected fieldstream
The network stream used by the connecition.
(Inherited from Client.)
Top
Remarks
According to http://code.google.com/p/memcached/wiki/BinaryProtocolRevamped
See Also