示例#1
0
 /// <summary>
 /// Initializes a new instance of the CsmPublishingProfileOptions
 /// class.
 /// </summary>
 /// <param name="format">Name of the format. Valid values are:
 /// FileZilla3
 /// WebDeploy -- default
 /// Ftp. Possible values include: 'FileZilla3', 'WebDeploy',
 /// 'Ftp'</param>
 /// <param name="includeDisasterRecoveryEndpoints">Include the
 /// DisasterRecover endpoint if true</param>
 public CsmPublishingProfileOptions(PublishingProfileFormat format = default(PublishingProfileFormat), bool?includeDisasterRecoveryEndpoints = default(bool?))
 {
     Format = format;
     IncludeDisasterRecoveryEndpoints = includeDisasterRecoveryEndpoints;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the CsmPublishingProfileOptions
 /// class.
 /// </summary>
 /// <param name="format">Name of the format. Valid values are:
 /// FileZilla3
 /// WebDeploy -- default
 /// Ftp. Possible values include: 'FileZilla3', 'WebDeploy',
 /// 'Ftp'</param>
 public CsmPublishingProfileOptions(PublishingProfileFormat format = default(PublishingProfileFormat))
 {
     Format = format;
     CustomInit();
 }