VCardCard

VCardCard class

VCard 파일에서 추출한 단일 카드를 나타냅니다.

public class VCardCard : VCardRecordset

속성

이름 설명
CalendarRecordset { get; } 달력 레코드를 가져옵니다.
CommunicationRecordset { get; } 통신 기록을 가져옵니다.
Count { get; } 메타데이터 속성의 수를 가져옵니다.
DeliveryAddressingRecordset { get; } 배달 주소 레코드를 가져옵니다.
ExplanatoryRecordset { get; } 설명 레코드를 가져옵니다.
ExtensionRecords { get; } 개인 확장 레코드를 가져옵니다.
GeneralRecordset { get; } 일반 레코드를 가져옵니다.
GeographicalRecordset { get; } 지리적 레코드를 가져옵니다.
IdentificationRecordset { get; } 식별 레코드를 가져옵니다.
Item { get; } 가져오기MetadataProperty 지정된 이름으로.
Keys { get; } 메타데이터 속성 이름의 컬렉션을 가져옵니다.
MetadataType { get; } 메타데이터 유형을 가져옵니다.
OrganizationalRecordset { get; } 조직 레코드를 가져옵니다.
PropertyDescriptors { get; } GroupDocs.Metadata 검색 엔진을 통해 액세스할 수 있는 속성에 대한 정보가 포함된 설명자 모음을 가져옵니다.
SecurityRecordset { get; } 보안 레코드를 가져옵니다.

행동 양식

이름 설명
AddProperties(Func<MetadataProperty, bool>, PropertyValue) 지정된 조건자를 만족하는 알려진 메타데이터 속성을 추가합니다. 이 작업은 재귀적이므로 중첩된 모든 패키지에도 영향을 미칩니다.
Contains(string) 패키지에 지정된 이름의 메타데이터 속성이 포함되어 있는지 확인합니다.
FilterByGroup(string) 매개변수로 전달된 그룹 이름으로 모든 vCard 레코드를 필터링합니다. 자세한 내용은 다음을 참조하십시오. 방법.
FilterHomeTags() HOME 태그로 표시된 모든 vCard 레코드를 필터링합니다.
FilterPreferred() 기본 레코드를 필터링합니다.
FilterWorkTags() WORK 태그로 표시된 모든 vCard 레코드를 필터링합니다.
virtual FindProperties(Func<MetadataProperty, bool>) 지정된 조건자를 만족하는 메타데이터 속성을 찾습니다. 검색은 재귀적이므로 중첩된 모든 패키지에도 영향을 미칩니다.
GetAvailableGroups() 사용 가능한 그룹 이름을 가져옵니다.
GetEnumerator() 컬렉션을 반복하는 열거자를 반환합니다.
virtual RemoveProperties(Func<MetadataProperty, bool>) 지정된 조건자를 만족하는 메타데이터 속성을 제거합니다.
virtual Sanitize() 패키지에서 쓰기 가능한 메타데이터 속성을 제거합니다. 이 작업은 재귀적이므로 중첩된 모든 패키지에도 영향을 미칩니다.
SetProperties(Func<MetadataProperty, bool>, PropertyValue) 지정된 술어를 만족하는 알려진 메타데이터 속성을 설정합니다. 이 작업은 재귀적이므로 중첩된 모든 패키지에도 영향을 미칩니다. 이 방법은AddProperties 그리고UpdateProperties 기존 속성이 술어를 충족하면 해당 값이 업데이트됩니다. 조건자를 충족하는 패키지에 알려진 속성이 누락된 경우 패키지에 추가됩니다.
UpdateProperties(Func<MetadataProperty, bool>, PropertyValue) 지정된 술어를 만족하는 알려진 메타데이터 속성을 업데이트합니다. 이 작업은 재귀적이므로 중첩된 모든 패키지에도 영향을 미칩니다.

비고

더 알아보기

이 예는 vCard 속성 필터를 사용하는 방법을 보여줍니다.

public static void Run()
{
    using (Metadata metadata = new Metadata(Constants.InputVcf))
    {
        var root = metadata.GetRootPackage<VCardRootPackage>();

        foreach (var vCard in root.VCardPackage.Cards)
        {
            // 가장 선호하는 직장 전화번호 및 직장 이메일 출력
            var filtered = vCard.FilterWorkTags().FilterPreferred();
            PrintArray(filtered.CommunicationRecordset.Telephones);
            PrintArray(filtered.CommunicationRecordset.Emails);
        }
    }
}

private static void PrintArray(string[] values)
{
    if (values != null)
    {
        foreach (string value in values)
        {
            Console.WriteLine(value);
        }
    }
}

또한보십시오