C# Class HandCoded.FpML.Xml.Builder

The Builder class extends HandCoded.Xml.Builder with an understanding of FpML and its namespaces.
Inheritance: HandCoded.Xml.Builder
Exibir arquivo Open project: formicary/fpml-toolkit-csharp

Public Methods

Method Description
Builder ( SchemaRelease release ) : System

Constructs a Builder instance attached the root element of a new FpML document of the given SchemaRelease.

Builder ( SchemaRelease release, string type ) : System

Constructs a Builder instance attached the root element of a new FpML document of the given SchemaRelease and which has the indicated message type.

Builder ( XmlDocument document ) : System

Constructs a Builder instance attached to the root element of the given XmlDocument.

Builder ( XmlDocument document, XmlElement context ) : System

Constructs a Builder instance attached to the specified XmlElement of the given XmlDocument.

Method Details

Builder() public method

Constructs a Builder instance attached the root element of a new FpML document of the given SchemaRelease.
public Builder ( SchemaRelease release ) : System
release HandCoded.FpML.Meta.SchemaRelease The FpML to construct.
return System

Builder() public method

Constructs a Builder instance attached the root element of a new FpML document of the given SchemaRelease and which has the indicated message type.
public Builder ( SchemaRelease release, string type ) : System
release HandCoded.FpML.Meta.SchemaRelease The FpML to construct.
type string The document or message type to construct.
return System

Builder() public method

Constructs a Builder instance attached to the root element of the given XmlDocument.
public Builder ( XmlDocument document ) : System
document System.Xml.XmlDocument The to attach to.
return System

Builder() public method

Constructs a Builder instance attached to the specified XmlElement of the given XmlDocument.
public Builder ( XmlDocument document, XmlElement context ) : System
document System.Xml.XmlDocument The to attach to.
context System.Xml.XmlElement The initial context .
return System