WebSvc.Helper 1.0.8

There is a newer version of this package available.
See the version list below for details.
dotnet add package WebSvc.Helper --version 1.0.8
NuGet\Install-Package WebSvc.Helper -Version 1.0.8
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="WebSvc.Helper" Version="1.0.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WebSvc.Helper --version 1.0.8
#r "nuget: WebSvc.Helper, 1.0.8"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install WebSvc.Helper as a Cake Addin
#addin nuget:?package=WebSvc.Helper&version=1.0.8

// Install WebSvc.Helper as a Cake Tool
#tool nuget:?package=WebSvc.Helper&version=1.0.8

Added Text Services:ConvertToWords,ConvertToNumbers

Contains: Extension method for convert operation

  1. ConvertToBoolean - converts object to boolean (input parameter: type: object type) and returns either true/ false
  2. ConvertToString - converts object to string (input parameter: type: object type) and returns string
  3. ConvertToInteger - converts object to int 32(input parameter: type: object type) and returns int
  4. ConvertToDouble - converts object to double(input parameter: type: object type) and returns double
  5. ConvertToDateTime - converts object to datetime(input parameter: type: object type) and returns datetime
  6. ConvertToEpochUnixTimestamp - converts object to EpochUnixTimestamp(input parameter: type: object type) and returns datetime
  7. ConvertToBigInteger - converts object to int64/long(input parameter: type: object type) and returns int64
  8. FilterTextToAlphaNumeric - filter text to Alpha and Numeric text only and remove an special char other than alphabets and numeric(input parameter: type: object type) and return filtered text
  9. RemoveXmlChars - remove invalid xml characters from string text(input parameter: type: object type) and returns filtered text
  10. RandomText - generate the random text hash(input parameter: type: object type) and returns random hash text
  11. RandomNumber - generate the random int number(input parameter: type: object type) and rreturns random int value
  12. GetValue - Get Description attribute value of an enum and (input parameter: expects enum) and return string value
  13. ConvertToShort - converts object to int 16(input parameter: type: object type) and returns int
  14. ConvertToNull - converts object to null (expects object value) and returns null
  15. ConvertToDateTime - converts string to datetime (expects string value) and returns date in YYYY-MM-DDThh:mm:ss
  16. ConvertToDate - converts string to datetime (expects string value) and returns date in YYYY-MM-DD
  17. ConvertToStringGetFirst150CharUsingSubstring - converts object to substring (expects object value) and returns first 50 characters
  18. ConvertToByte - converts object to Byte (expects object value) and returns byte
  19. ConvertToByteArray - converts object to Byte Array (expects string value) and returns byte array
  20. ConvertToBase64 - converts object to Base 64 (expects object value) and returns base64
  21. ConvertToUnsignedInt - converts object to unassigned int32 (expects object value) and returns int32
  22. ConvertToUnsignedLong - converts object to unassigned int64 (expects object value) and returns int64
  23. ConvertToBase64 - converts object to Base 64 (expects object value) and returns base64
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 3.1

    • No dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on WebSvc.Helper:

Package Downloads
WebSvc.CryptoService

Data Encryption Algorithms MD5 AES Checksum AuthService: GenerateBasicAuth, DecodeBasicAuth

WebSvc.OAuthService

OAuthService is nuget package library to provide LogIn service for Facebook, Google, Microsoft, Twitter, Yahoo, Linked In.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.9 1,724 9/24/2022
1.1.8 853 9/21/2022
1.1.7 856 9/21/2022
1.1.6 926 9/18/2022
1.1.5 900 9/16/2022
1.1.4 868 9/16/2022
1.1.3 934 9/16/2022
1.1.2 880 9/16/2022
1.1.1 858 9/16/2022
1.1.0 911 9/15/2022
1.0.9 839 9/15/2022
1.0.8 1,005 9/17/2020
1.0.7 957 9/15/2020
1.0.6 839 9/15/2020
1.0.5 913 9/14/2020
1.0.4 1,016 9/13/2020
1.0.3 1,069 9/13/2020
1.0.2 1,006 9/13/2020
1.0.1 1,179 9/12/2020
1.0.0 1,000 9/12/2020

Added Text Services:ConvertToWords,ConvertToNumbers

Contains: Extension method for convert operation
1. ConvertToBoolean - converts object to boolean (input parameter: type: object type) and returns either true/ false
2. ConvertToString - converts object to string (input parameter: type: object type) and returns string
3. ConvertToInteger - converts object to int 32(input parameter: type: object type) and returns int
4. ConvertToDouble - converts object to double(input parameter: type: object type) and returns double
5. ConvertToDateTime - converts object to datetime(input parameter: type: object type) and returns datetime
6. ConvertToEpochUnixTimestamp - converts object to EpochUnixTimestamp(input parameter: type: object type) and returns datetime
7. ConvertToBigInteger - converts object to int64/long(input parameter: type: object type) and returns int64
8. FilterTextToAlphaNumeric - filter text to Alpha and Numeric text only and remove an special char other than alphabets and numeric(input parameter: type: object type) and return filtered text
9. RemoveXmlChars - remove invalid xml characters from string text(input parameter: type: object type) and returns filtered text
10. RandomText - generate the random text hash(input parameter: type: object type) and returns random hash text
11. RandomNumber - generate the random int number(input parameter: type: object type) and rreturns random int value
12. GetValue - Get Description attribute value of an enum and (input parameter: expects enum) and return string value
13. ConvertToShort - converts object to int 16(input parameter: type: object type) and returns int
14. ConvertToNull - converts object to null (expects object value) and returns null
15. ConvertToDateTime - converts string to datetime (expects string value) and returns date in YYYY-MM-DDThh:mm:ss
16. ConvertToDate - converts string to datetime (expects string value) and returns date in YYYY-MM-DD
17. ConvertToStringGetFirst150CharUsingSubstring - converts object to substring (expects object value) and returns first 50 characters
18. ConvertToByte - converts object to Byte (expects object value) and returns byte
19. ConvertToByteArray - converts object to Byte Array (expects string value) and returns byte array
20. ConvertToBase64 - converts object to Base 64 (expects object value) and returns base64
21. ConvertToUnsignedInt - converts object to unassigned int32 (expects object value) and returns int32
22. ConvertToUnsignedLong - converts object to unassigned int64 (expects object value) and returns int64
23. ConvertToBase64 - converts object to Base 64 (expects object value) and returns base64