Skip to content

Latest commit

 

History

History
79 lines (68 loc) · 2.53 KB

Or.adoc

File metadata and controls

79 lines (68 loc) · 2.53 KB

IpAddressBits.Or(IpAddressBits, IpAddressBits) Method

Definition

Combines two IpAddressBits objects by binary or.

Overloads

Combines an IpAddressBits with another IpAddressBits by binary or.

Combines two IpAddressBits objects by binary or.

Or(IpAddressBits)

Combines an IpAddressBits with another IpAddressBits by binary or.

[IpAddressBits] Or([IpAddressBits] $other)

Parameters

other IpAddressBits

An IP address to combine.

Returns

IpAddressBits

The combination of the given address with this one.

Exceptions

ArgumentNullException

other is null.

Or(IpAddressBits, IpAddressBits)

Combines two IpAddressBits objects by binary or.

[IpAddressBits] [IpAddressBits]::Or([IpAddressBits] $left, [IpAddressBits] $right)

Parameters

left IpAddressBits

An IP address to combine.

right IpAddressBits

An IP address to combine.

Returns

IpAddressBits

The combination of the two given addresses.

Exceptions

ArgumentNullException

left or right is null.

./And.adoc

Combines two IpAddressBits objects by binary and.