Kimono.KHTMLPart.FrameNames C# (CSharp) 메소드

FrameNames() 공개 메소드

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
리턴 List
        public List<string> FrameNames()
        {
            return (List<string>) interceptor.Invoke("frameNames", "frameNames() const", typeof(List<string>));
        }
KHTMLPart