public WorkspaceAttribute(Type delegateType, string delegateName)
 {
     ConnectionDelegate = (ConnectionPropertiesDelegate)Delegate.CreateDelegate(delegateType, delegateType.GetMethod(delegateName));
 }
 public WorkspaceAttribute(Type delegateType, string delegateName)
 {
     ConnectionDelegate = (ConnectionPropertiesDelegate)Delegate.CreateDelegate(typeof(ConnectionPropertiesDelegate), delegateType, delegateName);
 }