Click or drag to resize
Akka.NETAddress Class
The address specifies the physical location under which an Actor can be reached. Examples are local addresses, identified by the ActorSystem's name, and remote addresses, identified by protocol, host and port. This class is sealed to allow use as a case class (copy method etc.); if for example a remote transport would want to associate additional information with an address, then this must be done externally.
Inheritance Hierarchy
SystemObject
  Akka.ActorAddress

Namespace:  Akka.Actor
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public sealed class Address : ICloneable, 
	IEquatable<Address>, ISurrogated

The Address type exposes the following members.

Constructors
  NameDescription
Public methodAddress
TBD
Top
Properties
  NameDescription
Public propertyHasGlobalScope
Returns true if this Address is usable globally. Unlike locally defined addresses HasLocalScope addresses of global scope are safe to sent to other hosts, as they globally and uniquely identify an addressable entity.
Public propertyHasLocalScope
Returns true if this Address is only defined locally. It is not safe to send locally scoped addresses to remote hosts. See also HasGlobalScope
Public propertyHost
TBD
Public propertyPort
TBD
Public propertyProtocol
TBD
Public propertySystem
TBD
Top
Methods
  NameDescription
Public methodClone
Creates a new copy with the same properties as the current address.
Public methodEquals(Object)
Determines whether the specified object is equal to the current object.
(Overrides ObjectEquals(Object).)
Public methodEquals(Address)
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 methodGetHashCode
Serves as the default hash function.
(Overrides ObjectGetHashCode.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodHostPort
TBD
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodStatic memberParse
Parses a new Address from a given string
Public methodToString
Returns a string that represents the current object.
(Overrides ObjectToString.)
Public methodToSurrogate
TBD
Public methodWithHost
Creates a new Address with a given host.
Public methodWithPort
Creates a new Address with a given port.
Public methodWithProtocol
Creates a new Address with a given protocol.
Public methodWithSystem
Creates a new Address with a given system.
Top
Operators
  NameDescription
Public operatorStatic memberEquality
Compares two specified addresses for equality.
Public operatorStatic memberInequality
Compares two specified addresses for inequality.
Top
Fields
  NameDescription
Public fieldStatic memberAllSystems
Pseudo address for all systems
Top
Extension Methods
See Also