用inet1上传文件时用以下代码:
With Inet1
          cmdUpload.Enabled = False
          .Cancel
          .URL = txtServerName.Text
          .Password = txtPassword.Text
          .UserName = txtUser.Text
          .RemotePort = 21
          .AccessType = icUseDefault
          .Protocol = icFTP
          'Upload
          Exe "put   """ & txtUploadFile.Text & """   " & GetFileNameFromPathString(txtUploadFile.Text)               
     End With
  End If请问:其中的
         .AccessType = icUseDefault
         .Protocol = icFTP
两个属性设置的是什么???