DirectoryAttribute.Insert 方法

定义

将指定的 value 插入 DirectoryAttribute 集合中的指定 index 处。

重载

Insert(Int32, Byte[])

Insert(Int32, Byte[]) 方法将指定的 value 插入到 DirectoryAttribute 集合中的指定 index 处。

Insert(Int32, String)

Insert(Int32, String) 方法将指定的 value 插入到 DirectoryAttribute 集合中的指定 index 处。

Insert(Int32, Uri)

Insert(Int32, Uri) 方法将指定的 value 插入到 DirectoryAttribute 集合中的指定 index 处。

Insert(Int32, Byte[])

Source:
DirectoryAttribute.cs
Source:
DirectoryAttribute.cs
Source:
DirectoryAttribute.cs

Insert(Int32, Byte[]) 方法将指定的 value 插入到 DirectoryAttribute 集合中的指定 index 处。

public:
 void Insert(int index, cli::array <System::Byte> ^ value);
public void Insert (int index, byte[] value);
member this.Insert : int * byte[] -> unit
Public Sub Insert (index As Integer, value As Byte())

参数

index
Int32

DirectoryAttribute 集合中要插入 value 处的索引。

value
Byte[]

要插入的值。

例外

value 包含空引用(在 Visual Basic 中为 Nothing)。

index 小于零,或者 index 大于 DirectoryAttribute 对象中的元素个数。

适用于

Insert(Int32, String)

Source:
DirectoryAttribute.cs
Source:
DirectoryAttribute.cs
Source:
DirectoryAttribute.cs

Insert(Int32, String) 方法将指定的 value 插入到 DirectoryAttribute 集合中的指定 index 处。

public:
 void Insert(int index, System::String ^ value);
public void Insert (int index, string value);
member this.Insert : int * string -> unit
Public Sub Insert (index As Integer, value As String)

参数

index
Int32

DirectoryAttribute 集合中要插入 value 处的索引。

value
String

要插入的值。

例外

value 包含空引用(在 Visual Basic 中为 Nothing)。

index 小于零,或者 index 大于 DirectoryAttribute 对象中的元素个数。

适用于

Insert(Int32, Uri)

Source:
DirectoryAttribute.cs
Source:
DirectoryAttribute.cs
Source:
DirectoryAttribute.cs

Insert(Int32, Uri) 方法将指定的 value 插入到 DirectoryAttribute 集合中的指定 index 处。

public:
 void Insert(int index, Uri ^ value);
public void Insert (int index, Uri value);
member this.Insert : int * Uri -> unit
Public Sub Insert (index As Integer, value As Uri)

参数

index
Int32

DirectoryAttribute 集合中要插入 value 处的索引。

value
Uri

要插入的值。

例外

value 包含空引用(在 Visual Basic 中为 Nothing)。

index 小于零,或者 index 大于 DirectoryAttribute 对象中的元素个数。

适用于