System.Windows.Automation.AutomationIdentifier.AutomationIdentifier C# (CSharp) Method

AutomationIdentifier() private method

private AutomationIdentifier ( UiaCoreIds type, int id, System.Guid guid, string programmaticName ) : System
type UiaCoreIds
id int
guid System.Guid
programmaticName string
return System
        internal AutomationIdentifier(UiaCoreIds.AutomationIdType type, int id, Guid guid, string programmaticName)
        {
            this._id = id;
            this._type = type;
            this._guid = guid;
            this._programmaticName = programmaticName;
        }