Click or drag to resize
BroccoliSharp BroAddress Structure
Represents an immutable Bro IP address. Implicitly castable as an IPAddress.

Namespace: BroccoliSharp
Assembly: BroccoliSharp (in BroccoliSharp.dll) Version: 1.0.5434.15853
Syntax
public struct BroAddress : IEquatable<BroAddress>

The BroAddress type exposes the following members.

Constructors
  NameDescription
Public methodBroAddress(IPAddress)
Creates a new BroAddress from an existing IP address.
Public methodBroAddress(String)
Creates a new BroAddress from a host name or IP address string.
Top
Methods
  NameDescription
Public methodEquals(Object)
Determines whether the specified Object is equal to the current BroAddress.
(Overrides ValueTypeEquals(Object).)
Public methodEquals(BroAddress)
Indicates whether the current BroAddress is equal to another BroAddress.
Public methodGetHashCode
Gets a hash code for this BroAddress.
(Overrides ValueTypeGetHashCode.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToIPAddress
Returns an IPAddress representation of this BroAddress.
Public methodToString
Returns a string that represents this BroAddress.
(Overrides ValueTypeToString.)
Top
Operators
Properties
  NameDescription
Public propertyAddressBytes
Gets address bytes, in network order, of this BroAddress.
Public propertyIsIPv4MappedAddress
Gets flag that determines if this BroAddress is based on an IPv4-mapped address.
Top
Remarks
Managed wrapper structure for bro_addr structure.
See Also