Show / Hide Table of Contents

    Class NetworkProfile

    Specifies the network interfaces of the virtual machine.

    Inheritance
    Object
    NetworkProfile
    Namespace: System.Dynamic.ExpandoObject
    Assembly: Microsoft.Azure.Management.Compute.dll
    Syntax
    public class NetworkProfile

    Constructors

    NetworkProfile()

    Initializes a new instance of the NetworkProfile class.

    Declaration
    public NetworkProfile ();

    NetworkProfile(IList<NetworkInterfaceReference>)

    Initializes a new instance of the NetworkProfile class.

    Declaration
    public NetworkProfile (System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference> networkInterfaces = null);
    Parameters
    IList<NetworkInterfaceReference> networkInterfaces

    Specifies the list of resource Ids for the network interfaces associated with the virtual machine.

    Properties

    NetworkInterfaces

    Gets or sets specifies the list of resource Ids for the network interfaces associated with the virtual machine.

    Declaration
    [Newtonsoft.Json.JsonProperty(PropertyName="networkInterfaces")]
    public System.Collections.Generic.IList<Microsoft.Azure.Management.Compute.Models.NetworkInterfaceReference> NetworkInterfaces { get; set; }
    Property Value
    IList<NetworkInterfaceReference>

    Back to top Azure SDK for Net