Kimono.KHTMLPart.FrameNames C# (CSharp) Method

FrameNames() public method

Returns a list of names of all frame (including iframe) objects of the current document. Note that this method is not working recursively for sub-frames.
public FrameNames ( ) : List
return List
        public List<string> FrameNames()
        {
            return (List<string>) interceptor.Invoke("frameNames", "frameNames() const", typeof(List<string>));
        }
KHTMLPart