25a0ad51254081cc8bd71fb3f6ab95238f15d576
[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>더 이상 필요 없게 되면 컴퓨터 메모리에서 삭제되는 텍스트처럼 기밀을 유지해야 하는 텍스트를 나타냅니다.이 클래스는 상속될 수 없습니다.</summary>\r
9     </member>\r
10     <member name="M:System.Security.SecureString.#ctor">\r
11       <summary>\r
12         <see cref="T:System.Security.SecureString" /> 클래스의 새 인스턴스를 초기화합니다.</summary>\r
13       <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurred while protecting or unprotecting the value of this instance.</exception>\r
14       <exception cref="T:System.NotSupportedException">This operation is not supported on this platform.</exception>\r
15     </member>\r
16     <member name="M:System.Security.SecureString.#ctor(System.Char*,System.Int32)">\r
17       <summary>\r
18         <see cref="T:System.Char" /> 개체의 하위 배열에서 <see cref="T:System.Security.SecureString" /> 클래스의 새 인스턴스를 초기화합니다. </summary>\r
19       <param name="value">\r
20         <see cref="T:System.Char" /> 개체의 배열에 대한 포인터입니다.</param>\r
21       <param name="length">새 인스턴스에 포함할 <paramref name="value" />의 요소 수입니다.</param>\r
22       <exception cref="T:System.ArgumentNullException">\r
23         <paramref name="value" /> is null.</exception>\r
24       <exception cref="T:System.ArgumentOutOfRangeException">\r
25         <paramref name="length" /> is less than zero or greater than 65,536.</exception>\r
26       <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurred while protecting or unprotecting the value of this secure string. </exception>\r
27       <exception cref="T:System.NotSupportedException">This operation is not supported on this platform.</exception>\r
28     </member>\r
29     <member name="M:System.Security.SecureString.AppendChar(System.Char)">\r
30       <summary>현재 보안 문자열의 끝에 문자를 추가합니다.</summary>\r
31       <param name="c">이 보안 문자열에 추가할 문자입니다.</param>\r
32       <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>\r
33       <exception cref="T:System.InvalidOperationException">This secure string is read-only.</exception>\r
34       <exception cref="T:System.ArgumentOutOfRangeException">Performing this operation would make the length of this secure string greater than 65,536 characters.</exception>\r
35       <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurred while protecting or unprotecting the value of this secure string.</exception>\r
36     </member>\r
37     <member name="M:System.Security.SecureString.Clear">\r
38       <summary>현재 보안 문자열의 값을 삭제합니다.</summary>\r
39       <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>\r
40       <exception cref="T:System.InvalidOperationException">This secure string is read-only.</exception>\r
41     </member>\r
42     <member name="M:System.Security.SecureString.Copy">\r
43       <summary>현재 보안 문자열의 복사본을 만듭니다.</summary>\r
44       <returns>이 보안 문자열의 복제본입니다.</returns>\r
45       <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>\r
46       <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurred while protecting or unprotecting the value of this secure string.</exception>\r
47     </member>\r
48     <member name="M:System.Security.SecureString.Dispose">\r
49       <summary>현재 <see cref="T:System.Security.SecureString" /> 개체에서 사용하는 모든 리소스를 해제합니다.</summary>\r
50     </member>\r
51     <member name="M:System.Security.SecureString.InsertAt(System.Int32,System.Char)">\r
52       <summary>이 보안 문자열의 지정한 인덱스 위치에 문자를 삽입합니다. </summary>\r
53       <param name="index">\r
54         <paramref name="c" /> 매개 변수가 삽입될 인덱스 위치입니다.</param>\r
55       <param name="c">삽입할 문자입니다.</param>\r
56       <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>\r
57       <exception cref="T:System.InvalidOperationException">This secure string is read-only.</exception>\r
58       <exception cref="T:System.ArgumentOutOfRangeException">\r
59         <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
60       <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurred while protecting or unprotecting the value of this secure string.</exception>\r
61     </member>\r
62     <member name="M:System.Security.SecureString.IsReadOnly">\r
63       <summary>이 보안 문자열이 읽기 전용으로 표시되었는지를 나타냅니다.</summary>\r
64       <returns>이 보안 문자열이 읽기 전용이면 true이고, 그렇지 않으면 false입니다.</returns>\r
65       <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>\r
66     </member>\r
67     <member name="P:System.Security.SecureString.Length">\r
68       <summary>현재 보안 문자열의 문자 수를 가져옵니다.</summary>\r
69       <returns>이 보안 문자열에 있는 <see cref="T:System.Char" /> 개체의 수입니다.</returns>\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.MakeReadOnly">\r
73       <summary>이 보안 문자열의 텍스트 값을 읽기 전용으로 만듭니다.   </summary>\r
74       <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>\r
75     </member>\r
76     <member name="M:System.Security.SecureString.RemoveAt(System.Int32)">\r
77       <summary>이 보안 문자열에서 지정한 인덱스 위치의 문자를 제거합니다.</summary>\r
78       <param name="index">이 보안 문자열에서 문자의 인덱스 위치입니다.</param>\r
79       <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>\r
80       <exception cref="T:System.InvalidOperationException">This secure string is read-only.</exception>\r
81       <exception cref="T:System.ArgumentOutOfRangeException">\r
82         <paramref name="index" /> is less than zero, or greater than or equal to the length of this secure string.</exception>\r
83       <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurred while protecting or unprotecting the value of this secure string.</exception>\r
84     </member>\r
85     <member name="M:System.Security.SecureString.SetAt(System.Int32,System.Char)">\r
86       <summary>지정한 인덱스 위치의 기존 문자를 다른 문자로 바꿉니다.</summary>\r
87       <param name="index">이 보안 문자열에서 기존 문자의 인덱스 위치입니다.</param>\r
88       <param name="c">기존 문자를 바꾸는 문자입니다.</param>\r
89       <exception cref="T:System.ObjectDisposedException">This secure string has already been disposed.</exception>\r
90       <exception cref="T:System.InvalidOperationException">This secure string is read-only.</exception>\r
91       <exception cref="T:System.ArgumentOutOfRangeException">\r
92         <paramref name="index" /> is less than zero, or greater than or equal to the length of this secure string.</exception>\r
93       <exception cref="T:System.Security.Cryptography.CryptographicException">An error occurred while protecting or unprotecting the value of this secure string.</exception>\r
94     </member>\r
95     <member name="T:System.Security.SecureStringMarshal"></member>\r
96     <member name="M:System.Security.SecureStringMarshal.SecureStringToCoTaskMemUnicode(System.Security.SecureString)"></member>\r
97     <member name="M:System.Security.SecureStringMarshal.ZeroFreeCoTaskMemUnicode(System.IntPtr)"></member>\r
98   </members>\r
99 </doc>