StaticSiteTemplateOptions Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
StaticSiteTemplateOptions() |
Initializes a new instance of the StaticSiteTemplateOptions class. |
StaticSiteTemplateOptions(String, String, String, String, Nullable<Boolean>) |
Initializes a new instance of the StaticSiteTemplateOptions class. |
StaticSiteTemplateOptions()
Initializes a new instance of the StaticSiteTemplateOptions class.
public StaticSiteTemplateOptions ();
Public Sub New ()
Applies to
StaticSiteTemplateOptions(String, String, String, String, Nullable<Boolean>)
Initializes a new instance of the StaticSiteTemplateOptions class.
public StaticSiteTemplateOptions (string templateRepositoryUrl = default, string owner = default, string repositoryName = default, string description = default, bool? isPrivate = default);
new Microsoft.Azure.Management.WebSites.Models.StaticSiteTemplateOptions : string * string * string * string * Nullable<bool> -> Microsoft.Azure.Management.WebSites.Models.StaticSiteTemplateOptions
Public Sub New (Optional templateRepositoryUrl As String = Nothing, Optional owner As String = Nothing, Optional repositoryName As String = Nothing, Optional description As String = Nothing, Optional isPrivate As Nullable(Of Boolean) = Nothing)
Parameters
- templateRepositoryUrl
- String
URL of the template repository. The newly generated repository will be based on this one.
- owner
- String
Owner of the newly generated repository.
- repositoryName
- String
Name of the newly generated repository.
- description
- String
Description of the newly generated repository.
Whether or not the newly generated repository is a private repository. Defaults to false (i.e. public).
Applies to
Azure SDK for .NET