0

我用女巫写了一门课,创建了员工电话的概述。我正在获取包含子电话的 Activesync 对象的信息表单。

这是我当前的代码。如果孩子不包含任何空值,它就可以工作。

foreach (DirectoryEntry child in directoryObject.Children)
            {
                var activeSyncPhone = new ActiveSync.Phone();

                activeSyncPhone.Cn = child.Properties["cn"].Value.ToString(); //string
                activeSyncPhone.DistinguishedName = child.Properties["distinguishedName"].Value.ToString(); //sting
                activeSyncPhone.InstanceType = (int)child.Properties["instanceType"].Value; //int
                activeSyncPhone.WhenCreated = (DateTime)child.Properties["whenCreated"].Value; //datetime
                activeSyncPhone.WhenChanged = (DateTime)child.Properties["whenChanged"].Value; //datetime
                activeSyncPhone.Name = child.Properties["name"].Value.ToString(); //string
                activeSyncPhone.ObjectCategory = child.Properties["objectCategory"].Value.ToString(); //string
                activeSyncPhone.MsExchFirstSyncTime = (DateTime)child.Properties["msExchFirstSyncTime"].Value;//datetime
                activeSyncPhone.MsExchDeviceEASVersion = child.Properties["msExchDeviceEASVersion"].Value.ToString();//string
                activeSyncPhone.MsExchDeviceFriendlyName = child.Properties["msExchDeviceFriendlyName"].Value.ToString(); //string
                activeSyncPhone.MsExchDeviceAccessState = (ActiveSync.Phone.DeviceAccessState)child.Properties["msExchDeviceAccessState"].Value; //int
                activeSyncPhone.MsExchDeviceID = child.Properties["msExchDeviceID"].Value.ToString(); //string
                activeSyncPhone.MsExchDeviceType = child.Properties["msExchDeviceType"].Value.ToString(); //string
                try
                {
                    activeSyncPhone.MsExchDeviceIMEI = child.Properties["msExchDeviceIMEI"]?.Value.ToString(); //string
                }
                catch
                {
                    activeSyncPhone.MsExchDeviceIMEI = "Could not find IMEI";
                }

                activeSyncPhone.MsExchDeviceUserAgent = child.Properties["msExchDeviceUserAgent"].Value.ToString(); //string
                activeSyncPhone.MsExchVersion = child.Properties["msExchVersion"].Value.ToString(); //string
                activeSyncPhone.MsExchDeviceAccessStateReason = (ActiveSync.Phone.DeviceAccessStateReason)child.Properties["msExchDeviceAccessStateReason"].Value; //string
                activeSyncPhone.MsExchUserDisplayName = child.Properties["msExchUserDisplayName"].Value.ToString(); //string
                activeSyncPhone.MsExchDeviceModel = child.Properties["msExchDeviceModel"].Value.ToString(); //string
                activeSyncPhone.MsExchDeviceOS = child.Properties["msExchDeviceOS"].Value.ToString(); //string
                activeSyncPhone.ObjectGUID = child.Properties["objectGUID"].Value.ToString(); //string
                activeSyncUnits.PhoneList.Add(activeSyncPhone);


                child.Close();
            }
            directoryObject.Close();

我想知道是否有任何方法可以使它更加健壮。我正在研究动态设置 ActiveSyncPhone 的属性,然后使用列表设置所有属性。但是 C# 是一种强类型语言,我认为 id 可以利用伴随该方面的类型安全和性能优势。

我认为可能有更好的方法,然后使用 if 语句检查每个 child.property 是否为空?还有没有更好的方法来获取子属性?

4

1 回答 1

1

您可以为此创建一个通用函数:

// you'll have to figure out the type of the `child.Properties`
public static T GetValue<T>(TypeOfChildProperties properties, string name, T defaultValue = default(T))
{
    var value = properties[name];

    if (value == null)
        return defaultValue;

    return (T)value;

    // if you have some cast problems, you could use this:
    return (T)Convert.ChangeType(value, typeof(T));
}

activeSyncPhone.Cn = GetValue<string>(child.Properties, "cn");
activeSyncPhone.DistinguishedName = GetValue<string>(child.Properties, "distinguishedName");
activeSyncPhone.InstanceType =  GetValue<int>(child.Properties, "instanceType");
activeSyncPhone.MsExchDeviceIMEI = GetValue<string>(child.Properties, "msExchDeviceIMEI", "Could not find IMEI");
于 2016-05-09T07:10:07.563 回答