File

projects/wms-framework/src/lib/baseframework/xmlsupport.ts

Description

Class for reading xml

Index

Properties
Methods

Properties

Public Name
Type : string
Default value : null
Public NodeType
Type : XmlNodeType
Public Value
Type : any
Default value : null

Methods

Static Create
Create(str: any, settings?: any)
Parameters :
Name Type Optional
str any No
settings any Yes
Returns : any
Public Dispose
Dispose()
Returns : void
Public MoveToAttribute
MoveToAttribute(attName: string)
Parameters :
Name Type Optional
attName string No
Returns : boolean
Public Read
Read()
Returns : any
import { Debugger } from '../diagnostics/Debugger';

// this file contains stubs for SAX-style XML parsing

/**
 * @wEnum System.Xml.XmlNodeType
 * @wNetSupport
 */
export enum XmlNodeType {
  Element,
}

/**
 * Class for reading xml
 *
 * @wType System.Xml.XmlReader
 * @wNetSupport
 */
export class XmlReader {
  public Name: string = null;
  public Value: any = null;
  public NodeType: XmlNodeType;
  /**
   *
   * @param {string} attName
   * @returns {boolean}
   * @wNoMap
   */
  public MoveToAttribute(attName: string): boolean {
    Debugger.Throw('Not implemented');
    return false;
  }
  /**
   *
   * @param {*} str
   * @param {*} settings
   * @returns {*}
   * @wNoMap
   */
  public static Create(str: any, settings?: any): any {
    Debugger.Throw('Not implemented');
  }
  /**
   * @returns {*}
   * @wNoMap
   */
  public Read(): any {
    Debugger.Throw('Not implemented');
  }
  /**
   * @wNoMap
   */
  public Dispose(): void {
    Debugger.Throw('Not implemented');
  }
}

result-matching ""

    No results matching ""