public void GetDynamicOptions(string category, Api.IRequest requestObject)
        {
            if (requestObject == null)
            {
                throw new ArgumentNullException("requestObject");
            }

            requestObject.Debug("Called DummyProvider GetDynamicOptions");
        }
        public void InitializeProvider(Api.IRequest requestObject)
        {
            if (requestObject == null)
            {
                throw new ArgumentNullException("requestObject");
            }

            requestObject.Debug("Called DummyProvider InitializeProvider");
        }
        public void ResolvePackageSources(Api.IRequest requestObject)
        {
            if (requestObject == null)
            {
                throw new ArgumentNullException("requestObject");
            }

            requestObject.Debug("Called DummyProvider ResolvePackageSources");
        }
 public void FindPackageByFile(string filePath, int id, Api.IRequest requestObject)
 {
     throw new NotImplementedException();
 }
 public void FindPackage(string name, string requiredVersion, string minimumVersion, string maximumVersion, int id, Api.IRequest requestObject)
 {
     throw new NotImplementedException();
 }
 public void RemovePackageSource(string source, Api.IRequest requestObject)
 {
     throw new NotImplementedException();
 }
 public void AddPackageSource(string name, string location, bool trusted, Api.IRequest requestObject)
 {
     throw new NotImplementedException();
 }
 public void GetFeatures(Api.IRequest requestObject)
 {
     throw new NotImplementedException();
 }
 public void UninstallPackage(string fastPath, Api.IRequest requestObject)
 {
     throw new NotImplementedException();
 }
 public void GetPackageDetails(string fastPath, Api.IRequest requestObject)
 {
     throw new NotImplementedException();
 }
 public void DownloadPackage(string fastPath, string location, Api.IRequest requestObject)
 {
     throw new NotImplementedException();
 }
 public void GetInstalledPackages(string name, string requiredVersion, string minimumVersion, string maximumVersion, Api.IRequest requestObject)
 {
     throw new NotImplementedException();
 }
 public void FindPackageByUri(Uri uri, int id, Api.IRequest requestObject)
 {
     throw new NotImplementedException();
 }