Renci.SshNet.Common.ObjectIdentifier.ObjectIdentifier C# (CSharp) Method

ObjectIdentifier() public method

Initializes a new instance of the ObjectIdentifier class.
public ObjectIdentifier ( ) : System
return System
        public ObjectIdentifier(params ulong[] identifiers)
            : this()
        {
            if (identifiers.Length < 2)
                throw new ArgumentException("identifiers");

            Identifiers = identifiers;
        }
    }
ObjectIdentifier