EBBuildClient 1.0.114

dotnet add package EBBuildClient --version 1.0.114
NuGet\Install-Package EBBuildClient -Version 1.0.114
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="EBBuildClient" Version="1.0.114" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EBBuildClient --version 1.0.114
#r "nuget: EBBuildClient, 1.0.114"
#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 EBBuildClient as a Cake Addin
#addin nuget:?package=EBBuildClient&version=1.0.114

// Install EBBuildClient as a Cake Tool
#tool nuget:?package=EBBuildClient&version=1.0.114

N|Solid

BuildDB® API Client

The Official API Client for Blockchain-based Cloud Storage Services!

Build Status


Features

If your application requires cloud storage of unstructured JSON or key/value paired data, the EB Build client is an affordable and extremely fast alternative to any of the following solutions:

  • ✨ Supabase
  • ✨ AWS DynamoDB
  • ✨ Azure CosmoDB
  • ✨ Google Cloud Datastore
  • ✨ Oracle NoSQL Database
  • ✨ PostgreSQL
  • ✨ MongoDB
  • ✨ RavenDB
  • ✨ Redis
  • ✨ Couchbase


Benefits

  • ✨ xtremely affordable flexible fee pricing based on database size!
  • ✨ xtremely secure blockchain encryption!
  • ✨ xtremely fast event messaging!
  • ✨ xtremely powerful distributed denial of service (DDoS) features!
  • ✨ xtremely scalable with built-in cluster-wide auto-scaling!
  • ✨ xtremely powerful AI-based fuzzy matching for powerful filtering!
  • ✨ xtremely powerful lazy loading of parent child relationship without indexes!
  • ✨ xtremely simple integration with dynamic environments!
  • ✨ xtremely powerful integration that combines NoSQL, relational and vector databases!


Obtaining a Sandbox API Key

EBBuild cloud services can be accessed via our sandbox for a limited time. The EBBuild Client requires an API key before using the sandbox. Obtaining a sandbox API key is extremely easy! Follow the next steps to obtain an API key.

  • ** Send an email with your company name to: keyrequest@everythingblockchain.io**

Pre-Installation Steps:

#1. Click Here to Create a Private Cluster

#2. Click Here to Download the EBBuild Client via nuget

#3. Add the following dependencies to your project:

   3.1 Microsoft.AspNetCore.SignalR.Client version 7.0.2 (or higher)
   3.2 Microsoft.AspNetCore.SignalR.Protocols.MessagePack version 7.0.2 (or higher)


Post-Installation Steps:

#1 After creating a private cluster you will receive an automated email with the following:
    #1.1 A link to your private cluster in the cloud.
    #1.2 A security token required to store and retrieve data.
#2 Install the BuildDB Client nuget package into your Microsoft Visual Studio project.
#2 Add an appsettings.json file to project, if you don't already have an appsettings.json file added.
#3 Add the following values to the root of your appsettings.json file added to your project:
  {
     "BuildDBApiBaseUri": [enter the url provided by EBI, INc],
     "BuildDBApiToken": [enter the API key obtained supplied to you.],
     "BuildDBApiRoles": [enter user groups here.  
				For example you could enter: "Testers"],
     "BuildDBRegistrationHost": [enter the name of company or entity: 
					"Company ABC, Inc"]
   }


How To's

#1 After installing the BuildDBClient nuget package, add the following to your code:
      using BuildDBClient.Core;
      
#2 BuildDB allows you to store json data without any class/object or a concrete class/object.  For example, if you have the following defined data type and if you wanted to store its data onto the BuildDB cloud storage services, you would following for following example.  ALL classes passed in MUST implement the "CommonInterfaces" interface.  The "CommonInterfaces" interface ensure that all classes can support parent child relationships and aggregate function data.

    public class SampleDataClass: CommonInterfaces
    {
        public string ID {get; set;}
        public string Name {get; set;}
        public AddressClass Address1 {get; set;}
    }
    public class AddressClass: CommonInterfaces
    {
        public string City {get; set;}
        public string State {get; set;}
        public string Zip {get; set;}
    }       
    
#3 The BuildDB cloud services support both REST and Websocket endpoints.  Addtionally, the BuildDB client allows you to connect with using REST or a Websocket.

#4 Initialize the core BuildDB services in the following manner:
    #4.1 BuildDBApiFactory : This class is the core object used to manage connection objects.
         BuildDBApiFactory _BuildDBDBApiServiceFactory = 
	  new BuildDBApiFactory(
		_maxConnections, 
		Program._configuation, 
		_BuildDBDBUserEmail, 
		_BuildDBDBTenantId, 
		_BuildDBDBLedgerPreface, 
		_BuildDBDBLedgerName, 
		_BuildDBDBApiBaseUri, 
		_maxRecordsReturned, 
		_BuildDBDBUseWebSockets);
    
    #4.2 IBuildDBAPIService: This interface is used for all connection 
         object created by the BuildDBApiFactory.
         IBuildDBAPIService _client1 = 
		_BuildDBDBApiServiceFactory.GetApiClient();
         
    #4.3 BuildDBAPIService: This is a static class used to calling all CRUD 
	methods.
         List<string> recordList = BuildDBAPIService.GetLedgerRecords<string>(_filters, _client1).Result;
         List<string> recordList = BuildDBAPIService.GetLedgerRecords<string>(_filters, _BuildDBDBApiServiceFactory.GetApiClient()).Result;
         List<SampleDataClass> recordList = BuildDBAPIService.GetLedgerRecords<SampleDataClass>(_filters, _BuildDBDBApiServiceFactory.GetApiClient()).Result;

Filters

#5 The EBBuild cloud services support query filters used to filter data objects.
#6 To simplify creating filter conditions, the EBBuild client provides a filter builder.
    #6.1 List<string> _filters = EBIBuildAPIHelper.BuildFilter(_filters, "email", FilterOperation.EQ, "dummyuser15@gmail.com");
    #6.2 List<string> _filters = EBIBuildAPIHelper.BuildFilter(_filters, "email", FilterOperation.EQ, "dummyuser15@gmail.com", BooleanOperation.AND);

Aggregate Filter Functions

#7 The EBBuild cloud services support aggregate functions used to obtain group counts and sorting on data objects.
#8 To simiplify creating aggregate functions, the EBBuild client provides a function builder.
    #8.1 List<string> _filters = EBIBuildAPIHelper.BuildFilterFunction(_filterFunctions, new List<string>() { "Gender", "Age" }, FilterFunctionOperation.GROUPBY);
    #8.2 List<string> _filters = EBIBuildAPIHelper.BuildFilterFunction(_filterFunctions, new List<string>() { "LastName" }, FilterFunctionOperation.ORDERBY_DESC);
    
NOTE: In-order to see the group count value, you must include into your DTO a field named "GroupCount".
      The results (when groupBy is used) will only include values for the fields in the groupby clause and the GroupCount field.
      
NOTE: If you require raw data, then use our internal RawDataType class type.

NOTE: The RawDataType class has a single property called "RawData" or simply use the "String" data type which will contain your unstructured json payload.
    RawDataType rawData = await EBBuildAPIService.GetLedgerRecord<RawDataType>(EBBuildAPIServices);
    string rawData = await EBBuildAPIService.GetLedgerRecord<string>(EBBuildAPIServices);

   
Set the following required parameters.
     Microsoft.Extensions.Configuration.IConfiguration configuration;
     string email = "a valid email address";
     string tenantID = "any unique string to identify your organization";
     string ledgerPreface = "any string to identify your ledger.  i.e.: prod, qa, dev, crypto, etc.";
     string ledgerName = "any name of your ledger where your data class will be stored.  i.e. payments";

NOTE: If you do not specify a ledgername then the email address will automatically be used as the ledger name.
      If you specify a ledgerPreface then the ledgerPreface will be prepended to the ledger name.
      

#7. To enforce multi-factor authentication (MFA) you can set the enableMFA parameter.
     NOTE: When saving data to the ledger, if you set the MFA parameter to "true" and if suspicious read access to the ledger is detected that read access will be block temporarily until an email challenge is sent to you (the owner of the ledger to allow you an opportunity to block or allow access).
     
     bool enableMFA = true;   
     string blockTypeName = "SampleDataClass";
   
   - EBBuildAPIService.SaveDataToLedger(
      dataContext,
      EBBuildAPIServices,
      enableMFS,
      blockTypeName);


Basic CRUD Functions

Function Description
Database Initialization
Program._context = new ConfigurationRegistry.StartupContext();
Program._configuation = ConfigurationRegistry.StartupContext.Configuration;
String _ebbuildDBApiBaseUri = StartupContext.Configuration?.GetValue<string>("EbbuildApiBaseUri");
String _ebbuildDBApiToken = StartupContext.Configuration?.GetValue<string>("EbbuildApiToken");
String _ebbuildDBApiRoles = StartupContext.Configuration?.GetValue<string>("EbbuildApiRoles");
String _ebbuildDBUserEmail = StartupContext.Configuration?.GetValue<string>("EbbuildUserEmail");
string _ebbuildDBTenantId = StartupContext.Configuration?.GetValue<string>("EbbuildTenantId");
String _ebbuildDBLedgerEncryption = StartupContext.Configuration?.GetValue<string>("EbbuildLedgerEncryption");
String _ebbuildDBLedgerPreface = StartupContext.Configuration?.GetValue<string>("EbbuildLedgerPreface");
String _ebbuildDBLedgerName = string.Format("{0}", StartupContext.Configuration?.GetValue<string>("EbbuildLedgerName"));
Bool _ebbuildDBUseWebSockets = StartupContext.Configuration.GetValue<bool>("EbbuildUseWebSockets");
Int32 _ebbuildDBTimeOut = StartupContext.Configuration.GetValue<Int32>("EbbuildTimeOut");
Int32 _maxConnections = StartupContext.Configuration.GetValue<Int32>("EbbuildMaxConncetions");
Int32 _maxRecordsReturned = StartupContext.Configuration.GetValue<Int32>("EbbuildMaxRecordsReturned");
string _hostRegistration = StartupContext.Configuration.GetValue<string>("EbbuildRegistrationHost");
Int32 _asyncScale = StartupContext.Configuration.GetValue<Int32>("EbbuildAsyncScale");

Function Description
Database Factory Creation
EBBuildApiFactory _ebBuildDBApiServiceFactory = new EBBuildApiFactory(
            _maxConnections,
           Program._configuation,
           _ebbuildDBApiToken,
           _ebbuildDBApiRoles,
           _ebbuildDBUserEmail,
           _ebbuildDBTenantId,
           _ebbuildDBLedgerPreface,
           _ebbuildDBLedgerName,
           _ebbuildDBApiBaseUri,
           _maxRecordsReturned,
           _ebbuildDBUseWebSockets,asyncScale: _asyncScale);

Function Description
Authentication
IEBBuildAPIService _client1 = _ebBuildDBApiServiceFactory.GetApiClient();
AuthStatus authStatus = await _client1.IsCredentialsValid();
if (authStatus != AuthStatus.Success)
{
            if (authStatus == AuthStatus.TokenInvalid)
            {
                     Debug.WriteLine(string.Format("Your API Token is invalid!"));
                     return;
            }
            else
            {
            if (authStatus == AuthStatus.TokenInvalidForEnvironment)
            {
                     Debug.WriteLine(string.Format("Your cluster is invaid!"));
                     return;
            }
            else
            {
            if (authStatus == AuthStatus.Failed)
            {
                     Debug.WriteLine(string.Format("Authentication failed!"));
                     return;
            }
        }
    }
   
}

Function Description
Filter Initialization
List<string> _filters = default(List<string>);
List<string> _childFilters = default(List<string>);
           _filters = EBIBuildAPIHelper.BuildFilter(
           _filters,
           "Recent_Searches_FShop_Key",
           FilterOperation.REGEX,
           "CDG");
           
           _childFilters = EBIBuildAPIHelper.BuildFilter(
           _childFilters,
           "Origin",
           FilterOperation.REGEX,
           "IAH",
           BooleanOperation.AND);

Function Description
Database CRUD
GetAllLedgersAsync Get list of all ledgers (tables) in EBBuild DB.
           var allLedgers = _client1.GetAllLedgersAsync().Result;
            if (!string.IsNullOrEmpty(allLedgers.errorMessage))
           {
           Debug.WriteLine(allLedgers.errorMessage);
           return;
           }
           var ledgers = _client1.GetAllLedgersAsync(_client1.GetLedgerName()).Result;
            if (!string.IsNullOrEmpty(ledgers.errorMessage))
           {
           Debug.WriteLine(allLedgers.errorMessage);
           return;
           }
           if (ledgers.Item2?.Count() == 0)
           {
                  var newLedger = _client1.CreateLedgerAsync(_client2.GetLedgerName()).Result;
                  if(!string.IsNullOrEmpty(newLedger.errorMessage))
                  {
                        Debug.WriteLine(string.Format(newLedger.errorMessage));
                        return;
                  }
           }

Function Description
GetLedgerRecordsAsync Get all filtered blocks (records) in EBBuild DB for a specific ledger (table).
            /*/
            /*/ Load only parents
            /*/
           (List<Recent_Searches_Flight_Shop> shopList, paginationDetails) =
           EBBuildAPIService.GetLedgerRecordsAsync<Recent_Searches_Flight_Shop>(
           asyncWrapper: _ebBuildDBApiServiceFactory.GetAsyncWrapper(),
           parentToLazyLoadChildren: null,
           filterConditions: _filters,
           filterFunctions: _filterFunctions,
           relationship: _schemaDefinition,
           servicContext: _client1,
           refreshCacheResults: false).Result;
           /*/
            * Lazyloading child of parent
           /*/
           (List<Recent_Searches_Flight_Shop> shopListChildren, paginationDetails) =
           EBBuildAPIService.GetLedgerRecordsAsync<Recent_Searches_Flight_Shop>(
           asyncWrapper: _ebBuildDBApiServiceFactory.GetAsyncWrapper(),
           parentToLazyLoadChildren: shopList[1],
           filterConditions: _filters,
           filterFunctions: _filterFunctions,
           relationship: _schemaDefinition,
           servicContext: _client1,
           refreshCacheResults: false).Result;

Function Description
SaveDataToLedgerWithNoResponse Save a block (record) to a ledger (Table) based on a schema (class).
           EBBuildAPIService.SaveDataToLedgerWithNoResponse<Recent_Searches_Flight_Shop>(
           shop,
           _ebBuildDBApiServiceFactory.GetAsyncWrapper(),
           _queryPatterns,
           _queryPatternsFunctions,
           _client1,
           blockName,
           blockHashKey);

Function Description
DeleteDataFromLedgerWithNoResponse Delete (archive) a block (record) in a ledger (table) based on a schema (class).
           EBBuildAPIService.DeleteDataFromLedgerWithNoResponse<Recent_Searches_Flight_Shop>(
           _filters,
           _client1,
           _ebBuildDBApiServiceFactory.GetAsyncWrapper());

Function Description
UpdateDataToLedgerWithNoResponse Create a vector object and add a search vector.
            /*/
             * Create vector search string
           /*/
           Vector<Int32> vector = new Vector<Int32>();
           vector.AddVector(new int[] { 8, 2, 3, 4, 5 });

Vector Database Classes Description
Embeddings Create an embedding object to hold a matrix to be searched.
            /*/
             * Create embeddings matrix string
           /*/
           Embeddings<Vector<Int32>, Int32> embedding = new Embeddings<Vector<Int32>, Int32>();
           embedding.AddEmbedding(new[,]
           {
                    { new Vector<Int32>(new Int32[] { 1, 2, 3, 4, 5 }) },
                    { new Vector<Int32>(new Int32[] { 5, 6, 3, 8, 7 }) },
                    { new Vector<Int32>(new Int32[] { 3, 7, 3, 9, 1 }) }
           });
           
           string embeddingString = embedding.GetEmbeddingString();

Vector Database Classes Description
Vector Searching Search for matching vectors in an embedding.
            /*/
             * Create an embedding to search for.
           /*/
           Embeddings<Vector<Int32>, Int32> searchEmbedding = new Embeddings<Vector<Int32>, Int32>();
           searchEmbedding.AddEmbedding(new[,]
           {
           { new Vector<Int32>(new Int32[] { 1, 2, 3, 4, 5 }) },
           { new Vector<Int32>(new Int32[] { 5, 6, 3, 8, 7 }) },
           { new Vector<Int32>(new Int32[] { 3, 7, 3, 9, 1 }) }
           }
           );
           _filters = EBIBuildAPIHelper.BuildFilter(_filters, "Recent_Searches_FShop_LogData_Value", FilterOperation.VECTORMATCH, searchEmbedding.GetEmbeddingString());

Function Description
GetDDoSStatisticsAsync Conduct statistical analysis on records for a past time interval.
           (List<Recent_Searches_Flight_Shop> shopListDoS, paginationDetails) =
           EBBuildAPIService.GetDDoSStatisticsAsync<Recent_Searches_Flight_Shop>(
           asyncWrapper: _ebBuildDBApiServiceFactory.GetAsyncWrapper(),
           filterKey: "Recent_Searches_FShop_Device_Id",
           filterKeyValue: "cac5bf97-2acc-461c-b4dd-c962bd45f996",
           DateTimeKey: "Recent_Searches_FShop_Search_Time_Stamp",
           timeInterval: DoSTimeInterval.ELAPSEDMINUTES,
           DDoSTimeIntervalValue: "53100000",
           servicContext: _client1,
           EnforceCacheResults: false,
           StringNameOfType: typeof(Recent_Searches_Flight_Shop).Name).Result;


Adding Filter Conditions

Operation Description Example Notes
Regexp Regular expressions {LastName:REGEX:\b[L]\w+} ie: Match the lastname that begins with the letter "L". See the "Regular Expression - Documentation (below)"
FuzzyMatch AI pattern match {LastName:FuzzyMatch:Biden} ie: Match the lastname using artificial intelligence to find nuances in spelling.”
Or Logical OR {FirstName:EQ:Joe:OR},{LastName:EQ:Biden} Filter conditions combine multiple filter conditions by adding an optional "AND" "OR" boolean operator to the end of each filter.
Gt, Gte Greater than or equal. {Age:Gte:25}
Le, Lte Less than or less than or equal. {Age:Lte:25}
Between Between two values. {Age:BETWEEN:[10;41]}
Inq, Nin In or not inv an array of values. {City:Inq:[New York; Phoenix; London; Miami; Berlin]}
Eq Equal. {LastName:Eq:”Miller”}
Neq Not equal. {LastName:Neq:”Miller”}
Like, NLike Like or not like a value. {LastName:Like:”Miller”}
ILike, NiLike Case insensitive like and not like. {LastName:ILike:”Miller”}

Adding Parent Child Relationships

Defining Foreign Key Relationships
BuildDB (now) supports foreign key relationships just like SQL relational databases, but without the limitation of foreign key constraints. This means (unlike) tranditional foreign key contraints you can define foreign keys within your definition. Using the following class, SchemaRelationshipDef , it is possible to define foreign key constraints on the fly! One of the parameters to the method "GetLedgerRecordsAsync()" is the SchemaRelationshipDef class. As the retrieval of all child data is conducted as a lazy load operation, when passing in the SchemaRelationshipDef class, you must (also) pass in a single object that you wish to populate with children.

SchemaRelationshipDef _schemaDefinition = new SchemaRelationshipDef() {             RelationshipName = "RecentSearches2Children",             Relationships = new List<SchemaRelationshipDetails>()             {                  new SchemaRelationshipDetails()                  {
                         TargetSchemaName = typeof(Search_Child).AssemblyQualifiedName.Substring(0,typeof(Search_Child).AssemblyQualifiedName.IndexOf(",")),                          TargetSchemaType = typeof(Recent_Searche_Child),                          Relationship = new SchemaRelationship()                          {                                     SourceSchemaKey = "PK",                                      TargetSchemaKey = "ParentPK",                                      Filters= _childFilters,                                      FilterFunctions = _childFilterFunctions
                         },                          ChildRelationship = null                 }             }   };


Distributed Denial of Service (DDoS) Features - Documentation


Once you have data stored securely within BuildDB, you need to ensure users can access it. Combating DDoS requires capabilities that firewalls don't possess.

  • ✨ Firewalls have no intelligence on what business transaction is being performed. Thus you cannot implement brute force check against transactions. It is either URL or IP.
  • ✨ If a firewall has to implement brute force attack detection, it has to read the whole payload and then inspect for patterns. This requires high CPU Á Memory usage on Firewall. In case of https, it requires you to terminate https at firewall level so that it can read the received data.
  • ✨ Most firewalls have basic scripting language to configure rules. Some do support JavaScript like language, but check the CPU cost of that and the price tag. With HackerSpray, you get .NET code, so the sky is the limit.
  • ✨ Firewalls have limited storage for logs and shipping logs from firewall to analysis engines puts stress on the firewall, especially when you are under attack. Many a times, we experience Firewall CPU exhaustion when it is blocking DOS, while it is writing all those attacks in a log and also shipping the logs to our analysis servers.

The answer is more business level intelligent to analyze data before it is added to storage. The solution is BuildDB! Before storing data into BuildDB, simply invoke the following command "GetDDoSStatisticsAync" to instandly gather metrics on the frequency of records written using the same filterKey to allow or block adding additional records initiated by bad actors. It's that easy to implement DDoS!

 (List<ClassTypeX> DoSRecordList, paginationDetails) = EBBuildAPIService.GetDDoSStatisticsAsync<ClassTypeX>(
              asyncWrapper: _ebBuildDBApiServiceFactory.GetAsyncWrapper(),
              filterKey: "Id_Field", 
              filterKeyValue: "cac5bf97-2acc-461c-b4dd-c962bd45f996",
              DateTimeKey: "Time_Stamp_Field",
              timeInterval: DoSTimeInterval.ELAPSEDMINUTES,
              DDoSTimeIntervalValue: "1",
              servicContext: _client1,
              EnforceCacheResults: false,
              StringNameOfType: typeof(ClassTypeX).Name).Result;

Regular Expression - Documentation

Character What does it do?
\ Used to indicate that the next character should NOT be interpreted literally. For example, the character 'w' by itself will be interpreted as 'match the character w', but using '\w' signifies 'match an alpha-numeric character including underscore'.Used to indicate that a metacharacter is to be interpreted literally. For example, the '.' metacharacter means 'match any single character but a new line', but if we would rather match a dot character instead, we would use '.'.
^ Matches the beginning of the input. If in multiline mode, it also matches after a line break character, hence every new line. When used in a set pattern ([^abc]), it negates the set; match anything not enclosed in the brackets
$ Matches the end of the input. If in multiline mode, it also matches before a line break character, hence every end of line.
* Matches the preceding character 0 or more times.
+ Matches the preceding character 1 or more times.
? Matches the preceding character 0 or 1 time. When used after the quantifiers *, +, ? or {}, makes the quantifier non-greedy; it will match the minimum number of times as opposed to matching the maximum number of times.
. Matches any single character except the newline character.
(x) Matches 'x' and remembers the match. Also known as capturing parenthesis.
(?:x) Matches 'x' but does NOT remember the match. Also known as NON-capturing parenthesis.
x(?=y) Matches 'x' only if 'x' is followed by 'y'. Also known as a lookahead.
x(?!y) Matches 'x' only if 'x' is NOT followed by 'y'. Also known as a negative lookahead.
x | y Matches 'x' OR 'y'.
{n} Matches the preceding character exactly n times.
{n,m} Matches the preceding character at least n times and at most m times. n and m can be omitted if zero..
[abc] Matches any of the enclosed characters. Also known as a character set. You can create range of characters using the hyphen character such as A-Z (A to Z). Note that in character sets, special characters (., *, +) do not have any special meaning.
[^abc] Matches anything NOT enclosed by the brackets. Also known as a negative character set.
[\b] Matches a backspace.
\b Matches a word boundary. Boundaries are determined when a word character is NOT followed or NOT preceded with another word character.
\B Matches a NON-word boundary. Boundaries are determined when two adjacent characters are word characters OR non-word characters.
\cX Matches a control character. X must be between A to Z inclusive.
\d Matches a digit character. Same as [0-9] or [0123456789].
\D Matches a NON-digit character. Same as [^0-9] or [^0123456789].
\f Matches a form feed.
\n Matches a line feed.
\r Matches a carriage return.
\s Matches a single white space character. This includes space, tab, form feed and line feed.
\S Matches anything OTHER than a single white space character. Anything other than space, tab, form feed and line feed.
\t Matches a tab.
\v Matches a vertical tab.
\w Matches any alphanumeric character including underscore. Equivalent to [A-Za-z0-9_].
\W Matches anything OTHER than an alphanumeric character including underscore. Equivalent to [^A-Za-z0-9_].
\x A back reference to the substring matched by the x parenthetical expression. x is a positive integer.
\0 Matches a NULL character.
\xhh Matches a character with the 2-digits hexadecimal code.
\uhhhh Matches a character with the 4-digits hexadecimal code.

Company Contact Information

Contact Email
Technical Support support@everythingblockchain.io
Sales sales@everythingblockchain.io
Partners partners@everythingblockchain.io
Marketing marketing@everythingblockchain.io
Investors invest@everythingblockchain.io
Press press@everythingblockchain.io


License

MIT- The API is and will always remain free! The data storage is based on a fixed fee. Contact EverythingBlockchain, Inc for details.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.114 83 4/16/2024
1.0.113 122 4/5/2024
1.0.112 346 2/21/2024
1.0.111 430 2/7/2024
1.0.110 457 2/4/2024
1.0.109 504 1/23/2024
1.0.108 741 12/20/2023
1.0.107 765 12/6/2023
1.0.106 788 12/5/2023
1.0.105 772 11/30/2023
1.0.104 753 11/30/2023
1.0.103 758 11/28/2023
1.0.102 775 11/28/2023
1.0.101 734 11/13/2023
1.0.100 752 11/13/2023
1.0.99 784 11/13/2023
1.0.98 740 11/10/2023
1.0.97 750 11/10/2023
1.0.96 749 11/9/2023
1.0.95 739 11/9/2023
1.0.94 763 11/9/2023
1.0.93 803 10/25/2023
1.0.92 769 10/23/2023
1.0.91 834 10/15/2023
1.0.90 778 10/11/2023
1.0.89 758 10/11/2023
1.0.88 782 10/10/2023
1.0.87 812 9/4/2023
1.0.86 916 8/15/2023
1.0.85 822 7/18/2023
1.0.84 836 7/6/2023
1.0.83 841 7/6/2023
1.0.82 851 7/1/2023
1.0.81 844 6/20/2023
1.0.80 819 5/12/2023
1.0.79 817 5/11/2023
1.0.78 850 5/4/2023
1.0.77 1,288 3/19/2023
1.0.76 939 3/15/2023
1.0.75 970 3/14/2023
1.0.74 980 3/14/2023
1.0.72 979 3/14/2023
1.0.71 987 3/10/2023
1.0.70 971 3/8/2023
1.0.69 992 3/3/2023
1.0.68 982 3/2/2023
1.0.67 966 3/2/2023
1.0.66 990 2/28/2023
1.0.65 1,015 2/21/2023
1.0.64 995 2/7/2023
1.0.63 984 2/7/2023
1.0.62 1,009 2/6/2023
1.0.61 993 2/3/2023
1.0.60 999 1/30/2023
1.0.59 1,033 1/29/2023
1.0.58 1,036 1/27/2023
1.0.57 1,009 1/27/2023
1.0.56 1,007 1/27/2023
1.0.55 1,049 1/27/2023
1.0.54 984 1/26/2023
1.0.53 1,011 1/26/2023
1.0.52 990 1/26/2023
1.0.51 1,025 1/26/2023
1.0.50 991 1/26/2023
1.0.49 989 1/26/2023
1.0.48 997 1/26/2023
1.0.47 1,034 1/25/2023
1.0.46 1,011 1/25/2023
1.0.45 1,041 1/25/2023
1.0.44 1,021 1/25/2023
1.0.43 1,022 1/24/2023
1.0.42 1,011 1/24/2023
1.0.41 1,027 1/24/2023
1.0.40 998 1/24/2023
1.0.39 1,016 1/24/2023
1.0.38 1,060 1/24/2023
1.0.37 1,040 1/23/2023
1.0.36 1,028 1/22/2023
1.0.35 1,041 1/22/2023
1.0.34 1,025 1/20/2023
1.0.33 1,052 1/20/2023
1.0.32 1,000 1/19/2023
1.0.31 1,120 1/19/2023
1.0.30 1,065 1/19/2023
1.0.29 978 1/19/2023
1.0.28 1,066 1/17/2023
1.0.27 1,077 1/17/2023
1.0.26 1,062 1/11/2023
1.0.25 1,101 12/9/2022
1.0.24 1,101 12/8/2022
1.0.23 1,033 12/8/2022
1.0.22 1,066 11/23/2022
1.0.21 1,071 11/23/2022
1.0.20 1,063 11/21/2022
1.0.18 1,031 11/21/2022
1.0.17 1,050 11/21/2022
1.0.16 1,043 11/18/2022
1.0.15 1,099 11/18/2022
1.0.14 1,112 11/18/2022
1.0.13 1,130 11/18/2022
1.0.9 2,731 11/18/2022
1.0.8 2,638 11/17/2022
1.0.7 2,619 11/17/2022
1.0.6 2,507 11/17/2022
1.0.5 2,594 11/17/2022
1.0.4 2,412 11/17/2022
1.0.3 2,566 11/17/2022
1.0.2 2,604 11/17/2022
1.0.1 2,476 11/17/2022
1.0.0 2,678 11/17/2022

EBBuild Client for .NetCore 6.0 and above