BitMiracle.LibTiff.Classic.Tiff.GetClientInfo C# (CSharp) Method

GetClientInfo() public method

Gets the extra information with specified name associated with this Tiff.
public GetClientInfo ( string name ) : object
name string Name of the extra information to retrieve.
return object
        public object GetClientInfo(string name)
        {
            // should get copy
            clientInfoLink link = m_clientinfo;

            while (link != null && link.name != name)
                link = link.next;

            if (link != null)
                return link.data;

            return null;
        }
Tiff