📄 vcard.cs
字号:
{
get
{
this.x.av();
return this.s;
}
set
{
this.x.av();
if (value == null)
{
value = "";
}
this.s = value.Trim();
if ((value.Trim().Length > 0) & !this.x.h(value))
{
this.s = "";
this.x.a(0x1f52L, "Invalid characters in business address state name", "VCARD");
}
}
}
public string mCore.IvCard.BusinessAddressStreet
{
get
{
this.x.av();
return this.q;
}
set
{
this.x.av();
if (value == null)
{
value = "";
}
this.q = value.Trim();
if ((value.Trim().Length > 0) & !this.x.h(value))
{
this.q = "";
this.x.a(0x1f50L, "Invalid characters in business street address", "VCARD");
}
this.a();
}
}
public string mCore.IvCard.BusinessAddressZIP
{
get
{
this.x.av();
return this.t;
}
set
{
this.x.av();
if (value == null)
{
value = "";
}
this.t = value.Trim();
if ((value.Trim().Length > 0) & !this.x.h(value))
{
this.t = "";
this.x.a(0x1f53L, "Invalid characters in business address ZIP code", "VCARD");
}
this.a();
}
}
public string mCore.IvCard.BusinessPhone
{
get
{
this.x.av();
return this.c;
}
set
{
this.x.av();
if (value == null)
{
value = "";
}
this.c = value.Trim();
if ((this.c.Trim().Length > 0) & (!this.x.j(this.c) & !this.x.f(this.c)))
{
this.c = "";
this.x.a(0x1f46L, "Invalid characters in business phone number", "VCARD");
}
}
}
public string mCore.IvCard.Comment
{
get
{
this.x.av();
return this.v;
}
set
{
this.x.av();
if (value == null)
{
value = "";
}
this.v = value.Trim();
if ((value.Trim().Length > 0) & !this.x.h(value))
{
this.v = "";
this.x.a(0x1f55L, "Invalid characters in comment", "VCARD");
}
this.a();
}
}
public string mCore.IvCard.Company
{
get
{
this.x.av();
return this.k;
}
set
{
this.x.av();
if (value == null)
{
value = "";
}
this.k = value.Trim();
if ((value.Trim().Length > 0) & !this.x.h(value))
{
this.k = "";
this.x.a(0x1f4aL, "Invalid characters in company name", "VCARD");
}
this.a();
}
}
public string mCore.IvCard.Destination
{
get
{
this.x.av();
return this.a;
}
set
{
this.x.av();
if (value == null)
{
value = "";
}
this.a = value.Trim();
if ((this.a.Length == 0) | (!this.x.j(this.a) & !this.x.f(this.a)))
{
this.a = "";
this.x.a(0x1f41L, "Invalid destination mobile number", "VCARD");
}
this.a();
}
}
public string mCore.IvCard.Email
{
get
{
this.x.av();
return this.e;
}
set
{
this.x.av();
if (value == null)
{
value = "";
}
this.e = value.Trim();
if ((value.Trim().Length > 0) & !this.x.d(value.Trim()))
{
this.e = "";
this.x.a(0x1f48L, "Invalid email address", "VCARD");
}
this.a();
}
}
public string mCore.IvCard.FirstName
{
get
{
this.x.av();
return this.f;
}
set
{
this.x.av();
if (value == null)
{
value = "";
}
this.f = value.Trim();
if ((value.Trim().Length > 0) & !this.x.h(value))
{
this.f = "";
this.x.a(0x1f42L, "Invalid characters in first name", "VCARD");
}
this.a();
}
}
public string mCore.IvCard.HomeAddressCity
{
get
{
this.x.av();
return this.m;
}
set
{
this.x.av();
if (value == null)
{
value = "";
}
this.m = value.Trim();
if ((value.Trim().Length > 0) & !this.x.h(value))
{
this.m = "";
this.x.a(0x1f4cL, "Invalid characters in home address city name", "VCARD");
}
this.a();
}
}
public string mCore.IvCard.HomeAddressCountry
{
get
{
this.x.av();
return this.p;
}
set
{
this.x.av();
if (value == null)
{
value = "";
}
this.p = value.Trim();
if ((value.Trim().Length > 0) & !this.x.h(value))
{
this.p = "";
this.x.a(0x1f4fL, "Invalid characters in home address country name", "VCARD");
}
this.a();
}
}
public string mCore.IvCard.HomeAddressState
{
get
{
this.x.av();
return this.n;
}
set
{
this.x.av();
if (value == null)
{
value = "";
}
this.n = value.Trim();
if ((value.Trim().Length > 0) & !this.x.h(value))
{
this.n = "";
this.x.a(0x1f4dL, "Invalid characters in home address state name", "VCARD");
}
this.a();
}
}
public string mCore.IvCard.HomeAddressStreet
{
get
{
this.x.av();
return this.l;
}
set
{
this.x.av();
if (value == null)
{
value = "";
}
this.l = value.Trim();
if ((value.Trim().Length > 0) & !this.x.h(value))
{
this.l = "";
this.x.a(0x1f4bL, "Invalid characters in home street address", "VCARD");
}
this.a();
}
}
public string mCore.IvCard.HomeAddressZIP
{
get
{
this.x.av();
return this.o;
}
set
{
this.x.av();
if (value == null)
{
value = "";
}
this.o = value.Trim();
if ((value.Trim().Length > 0) & !this.x.h(value))
{
this.o = "";
this.x.a(0x1f4eL, "Invalid characters in home address ZIP code", "VCARD");
}
this.a();
}
}
public string mCore.IvCard.HomePhone
{
get
{
this.x.av();
return this.b;
}
set
{
this.x.av();
if (value == null)
{
value = "";
}
this.b = value.Trim();
if ((this.b.Trim().Length > 0) & (!this.x.j(this.b) & !this.x.f(this.b)))
{
this.b = "";
this.x.a(0x1f45L, "Invalid characters in home phone number", "VCARD");
}
this.a();
}
}
public string mCore.IvCard.JobTitle
{
get
{
this.x.av();
return this.j;
}
set
{
this.x.av();
if (value == null)
{
value = "";
}
this.j = value.Trim();
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -