OpenHome.Net.Core.NetworkAdapter.FullName C# (CSharp) Method

FullName() public method

Get the full name for a given network interface.
public FullName ( ) : string
return string
        public string FullName()
        {
            IntPtr cStr = OhNetNetworkAdapterFullName(iHandle);
            string name = InteropUtils.PtrToStringUtf8(cStr);
            Library.Free(cStr);
            return name;
        }