AsposeVisualStudioPluginPdf.Core.AsposeComponent.set_remoteExamplesRepository C# (CSharp) Method

set_remoteExamplesRepository() public method

public set_remoteExamplesRepository ( string _remoteExamplesRepository ) : void
_remoteExamplesRepository string
return void
        public void set_remoteExamplesRepository(string _remoteExamplesRepository)
        {
            this._remoteExamplesRepository = _remoteExamplesRepository;
        }

Usage Example

 public AsposeComponents()
 {
     list.Clear();
     
     AsposeComponent asposePdf = new AsposeComponent();
     asposePdf.set_downloadUrl("");
     asposePdf.set_downloadFileName("aspose.Pdf.zip");
     asposePdf.set_name(Constants.ASPOSE_COMPONENT);
     asposePdf.set_remoteExamplesRepository("https://github.com/asposepdf/Aspose_Pdf_NET.git");
     list.Add(Constants.ASPOSE_COMPONENT, asposePdf);
 }
All Usage Examples Of AsposeVisualStudioPluginPdf.Core.AsposeComponent::set_remoteExamplesRepository