Parses hex string representing an Ethernet MAC address to the enternal format. Ethernet address has to contain 12 hex characters (1-9 or A-F) to be parsed correctly. Special formatting is ignored so both 0000.0010.0000 and 00-00-00-10-00-00 will be parsed ok.

Namespace:  SnmpSharpNet
Assembly:  SnmpSharpNet (in SnmpSharpNet.dll) Version: 0.5.2.0 (0.5.2.0)

Syntax

C#
public override void Set(
	string value
)
Visual Basic (Declaration)
Public Overrides Sub Set ( _
	value As String _
)
Visual C++
public:
virtual void Set(
	String^ value
) override

Parameters

value
Type: System..::.String
Ethernet address represented as a string.

See Also