-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPhoneLibMethodConstants.cs
30 lines (24 loc) · 1.04 KB
/
PhoneLibMethodConstants.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
using Microsoft.SqlServer.Dts.Runtime.Wrapper;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SSISPhoneLibShape
{
public static class PhoneLibMethodConstants
{
public const string IsViablePhoneNumber = "IsViablePhoneNumber";
public const string ExtractPossibleNumber = "ExtractPossibleNumber";
public const string NormalizedNumber = "NormalizedNumber";
public const string NormalizedDigitsOnly = "NormalizedDigitsOnly";
public const string E164Format = "E164Format";
public const string IntFormat = "IntFormat";
public const string IsValidNumber = "IsValidNumber";
public const string CountryCode = "CountryCode";
public const string HasCountryCode = "HasCountryCode";
public const string PreferredDomesticCarrierCode = "PreferredDomesticCarrierCode";
public const string GeoCoderDescription = "GeoCoderDescription";
public const string NumberType = "NumberType";
}
}