Example #1
0
 private Rdl.ConnectionPropertiesType CreateConnectionProperties()
 {
     Rdl.ConnectionPropertiesType connectionProperties = new Rdl.ConnectionPropertiesType();
     connectionProperties.Items = new object[]
     {
         "",
         "SQL",
     };
     connectionProperties.ItemsElementName = new Rdl.ItemsChoiceType[]
     {
         Rdl.ItemsChoiceType.ConnectString,
         Rdl.ItemsChoiceType.DataProvider,
     };
     return(connectionProperties);
 }
Example #2
0
 private Rdl.ConnectionPropertiesType CreateConnectionProperties()
 {
     Rdl.ConnectionPropertiesType connectionProperties = new Rdl.ConnectionPropertiesType();
     connectionProperties.Items = new object[]
         {
             "",
             "SQL",
         };
     connectionProperties.ItemsElementName = new Rdl.ItemsChoiceType[]
         {
             Rdl.ItemsChoiceType.ConnectString,
             Rdl.ItemsChoiceType.DataProvider,
         };
     return connectionProperties;
 }
Example #3
0
        private Rdl.ConnectionPropertiesType CreateConnectionProperties()
        {
            var connectionProperties = new Rdl.ConnectionPropertiesType
            {
                Items = new object[]
                {
                    "",
                    "SQL"
                },
                ItemsElementName = new[]
                {
                    Rdl.ItemsChoiceType.ConnectString,
                    Rdl.ItemsChoiceType.DataProvider
                }
            };

            return(connectionProperties);
        }