BugzillaInterface.BaseQuery.SetSource C# (CSharp) Method

SetSource() public method

public SetSource ( Repository source ) : void
source Repository
return void
        public void SetSource(Repository source)
        {
            if (bugProxy == null) {
                Console.WriteLine ("Configuring base query");
                Source = source;
                bugProxy = XmlRpcProxyGen.Create<IBugAPI> ();
                bugProxy = (IBugAPI)Source.ConfigureXmlRpcProxy (bugProxy);
            }
        }