c#12 [C#] API 웹 통신 하기 (WebGet, WebInvoke 차이) [C#] API 웹 통신 하기 (WebGet, WebInvoke 차이) WebGet (Rest 중 GET Method사용 시) [ServiceContract] [OperationContract] [WebGet(Method = "GET", UriTemplate = "/PasswordReset?ID={ID}" ResponseFormat = WebMessageFormat.Json)] WebInvoke (Rest 중 POST, PUT, DELETE, 사용 시) [ServiceContract] [OperationContract] [WebInvoke(Method = "POST", UriTemplate = "/PasswordReset/{ID}" ResponseFormat = WebMessageFormat.Json)].. 2021. 8. 23. [C#] 같은 문자열 체크 같은 문자열 체크 private bool checkSameStr(string str) { int cnt = 0; for (int i = 0; i = 2) { break; } } if (cnt >= 2) { //3글자 이상 막기 return false; } return true; } 2021. 4. 16. [C#] 비밀번호 공백 체크 비밀번호 공백 체크 (How to check whether input value is included space) using System.Linq; private bool checkSpace(string str) { if (str.Any(x => Char.IsWhiteSpace(x) == true)) { return true; } else { return false; } } 2021. 4. 13. [C#] SubnetMask 구하기 [C#] SubnetMask 구하기 How to get subnetmask in C# using System.Net; using System.Net.NetworkInformation; private void showSubnetMask() { NetworkInterface[] adapters = NetworkInterface.GetAllNetworkInterfaces(); string subnetMask = string.Empty; foreach (NetworkInterface adapter in adapters) { IPInterfaceProperties adapterProperties = adapter.GetIPProperties(); foreach (UnicastIPAddressInformation .. 2019. 8. 30. 이전 1 2 3 다음