00001 /* ---------------------------------------------------------------------------- 00002 * Microsoft Corporation 00003 * ---------------------------------------------------------------------------- 00004 * Microsoft Project Server mpFx (mpFx) 00005 * ---------------------------------------------------------------------------- 00006 * Author: Colby Africa 00007 * ---------------------------------------------------------------------------- 00008 * License: http://code.msdn.microsoft.com/mpFx/Project/License.aspx 00009 * ---------------------------------------------------------------------------- 00010 */ 00011 00012 namespace Mcs.Epm.MicrosoftProject.mpFx 00013 { 00014 #region Public Enums 00015 00016 /// <summary> 00017 /// Indicates what authentication type was employed when creating the ProjectServer instance 00018 /// </summary> 00019 public enum AuthenticationType 00020 { 00021 NotAuthenticated, // Authentication hasn't been specified 00022 Windows, 00023 Forms 00024 } 00025 00026 #endregion 00027 }
1.5.8