66cdc5427d4f641a3f7907225f5b8aa7e23d8807
[platform/core/dotnet/build-tools.git] /
1 <?xml version="1.0" encoding="utf-8"?>\r
2 <doc>\r
3   <assembly>\r
4     <name>System.Security.SecureString</name>\r
5   </assembly>\r
6   <members>\r
7     <member name="T:System.Security.SecureString">\r
8       <summary>Rappresenta il testo che deve rimanere riservato, ad esempio eliminandolo dalla memoria del computer quando non è più necessario.La classe non può essere ereditata.</summary>\r
9     </member>\r
10     <member name="M:System.Security.SecureString.#ctor">\r
11       <summary>Inizializza una nuova istanza della classe <see cref="T:System.Security.SecureString" />.</summary>\r
12       <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurred while protecting or unprotecting the value of this instance.</exception>\r
13       <exception cref="T:System.NotSupportedException">This operation is not supported on this platform.</exception>\r
14     </member>\r
15     <member name="M:System.Security.SecureString.#ctor(System.Char*,System.Int32)">\r
16       <summary>Inizializza una nuova istanza della classe <see cref="T:System.Security.SecureString" /> da una sottomatrice di oggetti <see cref="T:System.Char" />. </summary>\r
17       <param name="value">Puntatore a una matrice di oggetti <see cref="T:System.Char" />.</param>\r
18       <param name="length">Numero di elementi di <paramref name="value" /> da includere nella nuova istanza.</param>\r
19       <exception cref="T:System.ArgumentNullException">\r
20         <paramref name="value" /> is null.</exception>\r
21       <exception cref="T:System.ArgumentOutOfRangeException">\r
22         <paramref name="length" /> is less than zero or greater than 65,536.</exception>\r
23       <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurred while protecting or unprotecting the value of this secure string. </exception>\r
24       <exception cref="T:System.NotSupportedException">This operation is not supported on this platform.</exception>\r
25     </member>\r
26     <member name="M:System.Security.SecureString.AppendChar(System.Char)">\r
27       <summary>Aggiunge un carattere alla fine della stringa protetta corrente.</summary>\r
28       <param name="c">Carattere da aggiungere a questa stringa protetta.</param>\r
29       <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>\r
30       <exception cref="T:System.InvalidOperationException">This secure string is read-only.</exception>\r
31       <exception cref="T:System.ArgumentOutOfRangeException">Performing this operation would make the length of this secure string greater than 65,536 characters.</exception>\r
32       <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurred while protecting or unprotecting the value of this secure string.</exception>\r
33     </member>\r
34     <member name="M:System.Security.SecureString.Clear">\r
35       <summary>Elimina il valore della stringa protetta corrente.</summary>\r
36       <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>\r
37       <exception cref="T:System.InvalidOperationException">This secure string is read-only.</exception>\r
38     </member>\r
39     <member name="M:System.Security.SecureString.Copy">\r
40       <summary>Crea una copia della stringa protetta corrente.</summary>\r
41       <returns>Duplicato di questa stringa protetta.</returns>\r
42       <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>\r
43       <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurred while protecting or unprotecting the value of this secure string.</exception>\r
44     </member>\r
45     <member name="M:System.Security.SecureString.Dispose">\r
46       <summary>Rilascia tutte le risorse usate dall'oggetto <see cref="T:System.Security.SecureString" /> corrente.</summary>\r
47     </member>\r
48     <member name="M:System.Security.SecureString.InsertAt(System.Int32,System.Char)">\r
49       <summary>Inserisce un carattere in questa stringa protetta nella posizione di indice specificata. </summary>\r
50       <param name="index">Posizione di indice in cui viene inserito il parametro <paramref name="c" />.</param>\r
51       <param name="c">Carattere da inserire.</param>\r
52       <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>\r
53       <exception cref="T:System.InvalidOperationException">This secure string is read-only.</exception>\r
54       <exception cref="T:System.ArgumentOutOfRangeException">\r
55         <paramref name="index" /> is less than zero, or greater than the length of this secure string.-or-Performing this operation would make the length of this secure string greater than 65,536 characters.</exception>\r
56       <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurred while protecting or unprotecting the value of this secure string.</exception>\r
57     </member>\r
58     <member name="M:System.Security.SecureString.IsReadOnly">\r
59       <summary>Indica se questa stringa protetta è contrassegnata come di sola lettura.</summary>\r
60       <returns>true se questa stringa protetta è contrassegnata come di sola lettura; in caso contrario, false.</returns>\r
61       <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>\r
62     </member>\r
63     <member name="P:System.Security.SecureString.Length">\r
64       <summary>Ottiene il numero di caratteri nella stringa protetta corrente.</summary>\r
65       <returns>Numero di oggetti <see cref="T:System.Char" /> in questa stringa protetta.</returns>\r
66       <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>\r
67     </member>\r
68     <member name="M:System.Security.SecureString.MakeReadOnly">\r
69       <summary>Rende il valore di testo di questa stringa protetta di sola lettura.   </summary>\r
70       <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>\r
71     </member>\r
72     <member name="M:System.Security.SecureString.RemoveAt(System.Int32)">\r
73       <summary>Rimuove il carattere nella posizione di indice specificata da questa stringa protetta.</summary>\r
74       <param name="index">Posizione di indice di un carattere in questa stringa protetta.</param>\r
75       <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>\r
76       <exception cref="T:System.InvalidOperationException">This secure string is read-only.</exception>\r
77       <exception cref="T:System.ArgumentOutOfRangeException">\r
78         <paramref name="index" /> is less than zero, or greater than or equal to the length of this secure string.</exception>\r
79       <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurred while protecting or unprotecting the value of this secure string.</exception>\r
80     </member>\r
81     <member name="M:System.Security.SecureString.SetAt(System.Int32,System.Char)">\r
82       <summary>Sostituisce il carattere esistente nella posizione di indice specificata con un altro carattere.</summary>\r
83       <param name="index">Posizione di indice di un carattere esistente in questa stringa protetta.</param>\r
84       <param name="c">Carattere che sostituisce il carattere esistente.</param>\r
85       <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>\r
86       <exception cref="T:System.InvalidOperationException">This secure string is read-only.</exception>\r
87       <exception cref="T:System.ArgumentOutOfRangeException">\r
88         <paramref name="index" /> is less than zero, or greater than or equal to the length of this secure string.</exception>\r
89       <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurred while protecting or unprotecting the value of this secure string.</exception>\r
90     </member>\r
91     <member name="T:System.Security.SecureStringMarshal"></member>\r
92     <member name="M:System.Security.SecureStringMarshal.SecureStringToCoTaskMemUnicode(System.Security.SecureString)"></member>\r
93     <member name="M:System.Security.SecureStringMarshal.ZeroFreeCoTaskMemUnicode(System.IntPtr)"></member>\r
94   </members>\r
95 </doc>