Example #1
0
 public CatalogItem CreateCatalogItem(string ItemType, string Name, string Parent, bool Overwrite, [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary")] byte[] Definition, Property[] Properties, out Warning[] Warnings) {
     object[] results = this.Invoke("CreateCatalogItem", new object[] {
                 ItemType,
                 Name,
                 Parent,
                 Overwrite,
                 Definition,
                 Properties});
     Warnings = ((Warning[])(results[1]));
     return ((CatalogItem)(results[0]));
 }
Example #2
0
 public string CreateReportEditSession(string Report, string Parent, [System.Xml.Serialization.XmlElementAttribute(DataType="base64Binary")] byte[] Definition, out Warning[] Warnings) {
     object[] results = this.Invoke("CreateReportEditSession", new object[] {
                 Report,
                 Parent,
                 Definition});
     Warnings = ((Warning[])(results[1]));
     return ((string)(results[0]));
 }
Example #3
0
 public string CreateItemHistorySnapshot(string ItemPath, out Warning[] Warnings) {
     object[] results = this.Invoke("CreateItemHistorySnapshot", new object[] {
                 ItemPath});
     Warnings = ((Warning[])(results[1]));
     return ((string)(results[0]));
 }
Example #4
0
 public CatalogItem GenerateModel(string DataSource, string Model, string Parent, Property[] Properties, out Warning[] Warnings) {
     object[] results = this.Invoke("GenerateModel", new object[] {
                 DataSource,
                 Model,
                 Parent,
                 Properties});
     Warnings = ((Warning[])(results[1]));
     return ((CatalogItem)(results[0]));
 }