Home
last modified time | relevance | path

Searched refs:WebRequestMethods (Results 1 – 25 of 40) sorted by relevance

12

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Requests/tests/
H A DFtpWebRequestTest.cs44 Assert.Equal(request.Method, WebRequestMethods.Ftp.DownloadFile); in Ctor_VerifyDefaults_Success()
97 DoCommand(mode, WebRequestMethods.Ftp.DeleteFile, uri); in Ftp_CreateAndDelete()
113 DoCommand(mode, WebRequestMethods.Ftp.DeleteFile, uri); in Ftp_LargeFile()
131 DoCommand(mode, WebRequestMethods.Ftp.DeleteFile, uri); in Ftp_AppendFile()
149 DoCommand(mode, WebRequestMethods.Ftp.Rename, uri, renameTo); in Ftp_RenameFile()
157 DoCommand(mode, WebRequestMethods.Ftp.DeleteFile, newUri); in Ftp_RenameFile()
168 DoCommand(mode, WebRequestMethods.Ftp.MakeDirectory, dir); in Ftp_MakeAndRemoveDir_Success()
172 DoCommand(mode, WebRequestMethods.Ftp.RemoveDirectory, dir); in Ftp_MakeAndRemoveDir_Success()
187 DoCommand(mode, WebRequestMethods.Ftp.MakeDirectory, dir); in Ftp_RenameFileSubDir_Success()
200 DoCommand(mode, WebRequestMethods.Ftp.DeleteFile, renamedFile); in Ftp_RenameFileSubDir_Success()
[all …]
H A DFileWebRequestTest.cs143 request.Method = WebRequestMethods.File.UploadFile; in WriteFile_ContainsExpectedContent()
169 request.Method = WebRequestMethods.File.UploadFile; in WriteThenReadFile_WriteAccessResultsInNullResponseStream()
198 request.Method = WebRequestMethods.File.UploadFile; in RequestAfterResponse_throws()
244 request.Method = WebRequestMethods.File.UploadFile; in ConcurrentReadWrite_ResponseBlocksThenGetsNullStream()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Net/
H A DFtpWebRequest.cs96 WebRequestMethods.Ftp.AppendFile, // APPE
97 WebRequestMethods.Ftp.DeleteFile, // DELE
103 WebRequestMethods.Ftp.Rename, // RENAME
107 WebRequestMethods.Ftp.UploadFile, // STOR
447 …if (method != WebRequestMethods.Ftp.UploadFile && method != WebRequestMethods.Ftp.UploadFileWithUn… in BeginGetRequestStream()
635 case WebRequestMethods.Ftp.AppendFile: in ProcessMethod()
636 case WebRequestMethods.Ftp.UploadFile: in ProcessMethod()
645 case WebRequestMethods.Ftp.Rename: in ProcessMethod()
646 case WebRequestMethods.Ftp.DeleteFile: in ProcessMethod()
742 case WebRequestMethods.Ftp.DeleteFile: in ProcessSimpleMethod()
[all …]
H A DFtpWebResponse.cs152 if (method != WebRequestMethods.Ftp.DownloadFile && in GetResponseStream()
153 method != WebRequestMethods.Ftp.ListDirectory) in GetResponseStream()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Requests/src/System/Net/
H A DFtpWebRequest.cs111 new FtpMethodInfo(WebRequestMethods.Ftp.DownloadFile,
117 new FtpMethodInfo(WebRequestMethods.Ftp.ListDirectory,
124 new FtpMethodInfo(WebRequestMethods.Ftp.ListDirectoryDetails,
131 new FtpMethodInfo(WebRequestMethods.Ftp.UploadFile,
143 new FtpMethodInfo(WebRequestMethods.Ftp.AppendFile,
148 new FtpMethodInfo(WebRequestMethods.Ftp.DeleteFile,
152 new FtpMethodInfo(WebRequestMethods.Ftp.GetDateTimestamp,
156 new FtpMethodInfo(WebRequestMethods.Ftp.GetFileSize,
160 new FtpMethodInfo(WebRequestMethods.Ftp.Rename,
164 new FtpMethodInfo(WebRequestMethods.Ftp.MakeDirectory,
[all …]
H A DWebRequestMethods.cs7 public static class WebRequestMethods class
H A DFileWebRequest.cs16 private string _method = WebRequestMethods.File.DownloadFile;
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/Cache/
H A DFtpRequestCacheValidator.cs83 case WebRequestMethods.Ftp.DownloadFile: RequestMethod = HttpMethod.Get; break; in ValidateRequest()
84 case WebRequestMethods.Ftp.UploadFile: RequestMethod = HttpMethod.Put;break; in ValidateRequest()
85 case WebRequestMethods.Ftp.AppendFile: RequestMethod = HttpMethod.Put;break; in ValidateRequest()
86 case WebRequestMethods.Ftp.Rename: RequestMethod = HttpMethod.Put;break; in ValidateRequest()
87 case WebRequestMethods.Ftp.DeleteFile: RequestMethod = HttpMethod.Delete;break; in ValidateRequest()
98 if (method != WebRequestMethods.Ftp.DownloadFile) in ValidateRequest()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/
H A DFtpWebRequest.cs113 new FtpMethodInfo(WebRequestMethods.Ftp.DownloadFile,
119 new FtpMethodInfo(WebRequestMethods.Ftp.ListDirectory,
126 new FtpMethodInfo(WebRequestMethods.Ftp.ListDirectoryDetails,
133 new FtpMethodInfo(WebRequestMethods.Ftp.UploadFile,
145 new FtpMethodInfo(WebRequestMethods.Ftp.AppendFile,
150 new FtpMethodInfo(WebRequestMethods.Ftp.DeleteFile,
154 new FtpMethodInfo(WebRequestMethods.Ftp.GetDateTimestamp,
158 new FtpMethodInfo(WebRequestMethods.Ftp.GetFileSize,
162 new FtpMethodInfo(WebRequestMethods.Ftp.Rename,
166 new FtpMethodInfo(WebRequestMethods.Ftp.MakeDirectory,
[all …]
H A DWebRequestMethods.cs2 public static class WebRequestMethods{ class
H A Dwebclient.cs1675 return WebRequestMethods.Ftp.UploadFile; in MapToDefaultMethod()
/dports/security/keepass/KeePass-2.49-Source/KeePassLib/Serialization/
H A DIOConnection.cs317 if(string.Equals(request.Method, WebRequestMethods.Http.Post, in ConfigureWebRequest()
319 request.Method = WebRequestMethods.Http.Put; in ConfigureWebRequest()
626 s = CreateWebClient(ioc).OpenWrite(uri, WebRequestMethods.Http.Put); in OpenWrite()
662 bool b = SendCommand(ioc, WebRequestMethods.Ftp.GetDateTimestamp); in FileExists()
702 req.Method = WebRequestMethods.Ftp.DeleteFile; in DeleteFile()
750 req.Method = WebRequestMethods.Ftp.Rename; in RenameFile()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.Net/
H A DFtpWebRequestTest.cs203 Assert.AreEqual (WebRequestMethods.Ftp.DownloadFile, request.Method, "#1"); in DefaultValues()
260 ftp.Method = WebRequestMethods.Ftp.UploadFile; in UploadFile1()
357 ftp.Method = WebRequestMethods.Ftp.DownloadFile; in DownloadFile()
431 ftp.Method = WebRequestMethods.Ftp.DeleteFile; in DeleteFile1()
477 ftp.Method = WebRequestMethods.Ftp.ListDirectoryDetails; in ListDirectory1()
/dports/net/ntpa/ntpa-0.8.2/Ntp.Analyzer/Export/
H A DFtpStreamDestination.cs77 request.Method = WebRequestMethods.Ftp.UploadFile; in Write()
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/modules/windows/
H A Dwin_get_url.ps197 FtpWebRequest { [System.Net.WebRequestMethods+Ftp]::GetDateTimestamp } in Compare-ModifiedFile()
98 HttpWebRequest { [System.Net.WebRequestMethods+Http]::Head } in Compare-ModifiedFile()
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/ansible/windows/plugins/modules/
H A Dwin_get_url.ps1119 FtpWebRequest { [System.Net.WebRequestMethods+Ftp]::GetDateTimestamp } in Compare-ModifiedFile()
120 HttpWebRequest { [System.Net.WebRequestMethods+Http]::Head } in Compare-ModifiedFile()
/dports/sysutils/py-ansible-core/ansible-core-2.11.6/test/support/windows-integration/plugins/modules/
H A Dwin_get_url.ps1111 FtpWebRequest { [System.Net.WebRequestMethods+Ftp]::GetDateTimestamp } in Compare-ModifiedFile()
112 HttpWebRequest { [System.Net.WebRequestMethods+Http]::Head } in Compare-ModifiedFile()
/dports/sysutils/py-ansible-base/ansible-base-2.10.15/test/support/windows-integration/plugins/modules/
H A Dwin_get_url.ps1111 FtpWebRequest { [System.Net.WebRequestMethods+Ftp]::GetDateTimestamp } in Compare-ModifiedFile()
112 HttpWebRequest { [System.Net.WebRequestMethods+Http]::Head } in Compare-ModifiedFile()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.Requests/ref/
H A DSystem.Net.Requests.cs333 public static class WebRequestMethods class
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/
H A Dcommon.sources705 ../referencesource/System/net/System/Net/WebRequestMethods.cs
/dports/lang/mono/mono-5.10.1.57/mcs/class/Facades/netstandard/
H A DTypeForwarders.cs1164 [assembly:System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Net.WebRequestMethods))]
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/net_4_x/Facades/
H A Dnetstandard.cs1242 …bly:System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Net.WebRequestMethods))]
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.7.1/Facades/
H A Dnetstandard.cs1241 …bly:System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Net.WebRequestMethods))]
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monotouch/Facades/
H A Dnetstandard.cs1243 …bly:System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Net.WebRequestMethods))]
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monodroid/Facades/
H A Dnetstandard.cs1243 …bly:System.Runtime.CompilerServices.TypeForwardedToAttribute(typeof(System.Net.WebRequestMethods))]

12