'Declaration
Public Overloads Function DisplayFromHTTP( _ ByVal Uri As String, _ Optional ByVal Login As String, _ Optional ByVal Password As String _ ) As GdPictureStatus
public GdPictureStatus DisplayFromHTTP( string Uri, string Login, string Password )
public function DisplayFromHTTP( Uri: String; Login: String; Password: String ): GdPictureStatus;
public function DisplayFromHTTP( Uri : String, Login : String, Password : String ) : GdPictureStatus;
public: GdPictureStatus DisplayFromHTTP( string* Uri, string* Login, string* Password )
public: GdPictureStatus DisplayFromHTTP( String^ Uri, String^ Login, String^ Password )
Parameters
- Uri
- The full URI path with the full document name, where the file is located, for example http://guides.gdpicture.com/v14/pdf/GdPicture.NET14.pdf.
- Login
- The login required to authenticate on the server. It can be an empty string.
- Password
- The password required to authenticate on the server. It can be an empty string.
Return Value
A member of the GdPictureStatus enumeration. If the method has been successfully followed, then the return value is GdPictureStatus.OK. We strongly recommend always checking this status first.
Use the GetLastTransferError method to diagnose the error if this method has failed with one of the GdPictureStatus.Internet... errors.