You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

788 lines
69 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <doc>
  3. <assembly>
  4. <name>System.ObjectModel</name>
  5. </assembly>
  6. <members>
  7. <member name="T:System.Collections.ObjectModel.KeyedCollection`2">
  8. <summary>키가 값에 포함된 컬렉션에 대한 추상 기본 클래스를 제공합니다.</summary>
  9. <typeparam name="TKey">컬렉션에 있는 키의 형식입니다.</typeparam>
  10. <typeparam name="TItem">컬렉션에 있는 항목의 형식입니다.</typeparam>
  11. </member>
  12. <member name="M:System.Collections.ObjectModel.KeyedCollection`2.#ctor">
  13. <summary>기본 같음 비교자를 사용하는 <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
  14. </member>
  15. <member name="M:System.Collections.ObjectModel.KeyedCollection`2.#ctor(System.Collections.Generic.IEqualityComparer{`0})">
  16. <summary>지정된 같음 비교자를 사용하는 <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
  17. <param name="comparer">키를 비교할 때 사용할 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 제네릭 인터페이스의 구현이거나, <see cref="P:System.Collections.Generic.EqualityComparer`1.Default" />에서 얻은 키의 형식에 대한 기본 같음 비교자를 사용하려면 null입니다.</param>
  18. </member>
  19. <member name="M:System.Collections.ObjectModel.KeyedCollection`2.#ctor(System.Collections.Generic.IEqualityComparer{`0},System.Int32)">
  20. <summary>지정된 같음 비교자를 사용하고 지정된 임계값이 초과되면 조회 사전을 만드는 <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
  21. <param name="comparer">키를 비교할 때 사용할 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 제네릭 인터페이스의 구현이거나, <see cref="P:System.Collections.Generic.EqualityComparer`1.Default" />에서 얻은 키의 형식에 대한 기본 같음 비교자를 사용하려면 null입니다.</param>
  22. <param name="dictionaryCreationThreshold">컬렉션에서 조회 사전을 만들지 않고 저장할 수 있는 요소의 수입니다. 0을 지정하면 첫 번째 항목을 추가할 때 조회 사전이 만들어지고, -1을 지정하면 조회 사전이 만들어지지 않습니다.</param>
  23. <exception cref="T:System.ArgumentOutOfRangeException">
  24. <paramref name="dictionaryCreationThreshold" /> is less than –1.</exception>
  25. </member>
  26. <member name="M:System.Collections.ObjectModel.KeyedCollection`2.ChangeItemKey(`1,`0)">
  27. <summary>조회 사전의 지정된 요소와 연결된 키를 변경합니다.</summary>
  28. <param name="item">키를 변경할 요소입니다.</param>
  29. <param name="newKey">
  30. <paramref name="item" />의 새 키입니다.</param>
  31. <exception cref="T:System.ArgumentNullException">
  32. <paramref name="item" /> is null.-or-<paramref name="key" /> is null.</exception>
  33. <exception cref="T:System.ArgumentException">
  34. <paramref name="item" /> is not found.-or-<paramref name="key" /> already exists in the <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" />.</exception>
  35. </member>
  36. <member name="M:System.Collections.ObjectModel.KeyedCollection`2.ClearItems">
  37. <summary>
  38. <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" />에서 요소를 모두 제거합니다.</summary>
  39. </member>
  40. <member name="P:System.Collections.ObjectModel.KeyedCollection`2.Comparer">
  41. <summary>컬렉션에 있는 키가 같은지 확인하는 데 사용되는 제네릭 같음 비교자를 가져옵니다.</summary>
  42. <returns>컬렉션에 있는 키가 같은지 확인하는 데 사용되는 <see cref="T:System.Collections.Generic.IEqualityComparer`1" /> 제네릭 인터페이스의 구현입니다.</returns>
  43. </member>
  44. <member name="M:System.Collections.ObjectModel.KeyedCollection`2.Contains(`0)">
  45. <summary>컬렉션에 지정된 키를 가진 요소가 포함된지를 확인합니다.</summary>
  46. <returns>
  47. <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" />에 지정한 키가 있는 요소가 포함되어 있으면 true이고, 그렇지 않으면 false입니다.</returns>
  48. <param name="key">
  49. <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" />에서 찾을 수 있는 키입니다.</param>
  50. <exception cref="T:System.ArgumentNullException">
  51. <paramref name="key" /> is null.</exception>
  52. </member>
  53. <member name="P:System.Collections.ObjectModel.KeyedCollection`2.Dictionary">
  54. <summary>
  55. <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" />의 조회 사전을 가져옵니다.</summary>
  56. <returns>
  57. <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" />의 조회 사전이 있으면 해당 조회 사전이고, 그렇지 않으면 null입니다.</returns>
  58. </member>
  59. <member name="M:System.Collections.ObjectModel.KeyedCollection`2.GetKeyForItem(`1)">
  60. <summary>파생 클래스에서 구현되면 지정된 요소에서 키를 추출합니다.</summary>
  61. <returns>지정된 요소의 키입니다.</returns>
  62. <param name="item">키를 추출할 요소입니다.</param>
  63. </member>
  64. <member name="M:System.Collections.ObjectModel.KeyedCollection`2.InsertItem(System.Int32,`1)">
  65. <summary>
  66. <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" />의 지정된 인덱스에 요소를 삽입합니다.</summary>
  67. <param name="index">
  68. <paramref name="item" />를 삽입해야 하는 인덱스(0부터 시작)입니다.</param>
  69. <param name="item">삽입할 개체입니다.</param>
  70. <exception cref="T:System.ArgumentOutOfRangeException">
  71. <paramref name="index" /> is less than 0.-or-<paramref name="index" /> is greater than <see cref="P:System.Collections.ObjectModel.Collection`1.Count" />.</exception>
  72. </member>
  73. <member name="P:System.Collections.ObjectModel.KeyedCollection`2.Item(`0)">
  74. <summary>지정된 키를 가진 요소를 가져옵니다. </summary>
  75. <returns>지정한 키가 있는 요소입니다.지정된 키를 가진 요소가 없으면 예외가 throw됩니다.</returns>
  76. <param name="key">가져올 요소의 키입니다.</param>
  77. <exception cref="T:System.ArgumentNullException">
  78. <paramref name="key" /> is null.</exception>
  79. <exception cref="T:System.Collections.Generic.KeyNotFoundException">An element with the specified key does not exist in the collection.</exception>
  80. </member>
  81. <member name="M:System.Collections.ObjectModel.KeyedCollection`2.Remove(`0)">
  82. <summary>
  83. <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" />에서 지정한 키를 가지는 요소를 제거합니다.</summary>
  84. <returns>요소가 제거되면 true이고, 그렇지 않으면 false입니다.이 메서드는 <paramref name="key" />가 <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" />에 없는 경우에도 false를 반환합니다.</returns>
  85. <param name="key">제거할 요소의 키입니다.</param>
  86. <exception cref="T:System.ArgumentNullException">
  87. <paramref name="key" /> is null.</exception>
  88. </member>
  89. <member name="M:System.Collections.ObjectModel.KeyedCollection`2.RemoveItem(System.Int32)">
  90. <summary>
  91. <see cref="T:System.Collections.ObjectModel.KeyedCollection`2" />의 지정한 인덱스에서 요소를 제거합니다.</summary>
  92. <param name="index">제거할 요소의 인덱스입니다.</param>
  93. </member>
  94. <member name="M:System.Collections.ObjectModel.KeyedCollection`2.SetItem(System.Int32,`1)">
  95. <summary>지정된 인덱스에 있는 항목을 지정된 항목으로 바꿉니다.</summary>
  96. <param name="index">바꿀 항목의 0부터 시작하는 인덱스입니다.</param>
  97. <param name="item">새 항목입니다.</param>
  98. </member>
  99. <member name="T:System.Collections.ObjectModel.ObservableCollection`1">
  100. <summary>항목이 추가 또는 제거되거나 전체 목록이 새로 고쳐질 때 알림을 제공하는 동적 데이터 컬렉션을 나타냅니다.</summary>
  101. <typeparam name="T">컬렉션에 있는 요소의 형식입니다.</typeparam>
  102. </member>
  103. <member name="M:System.Collections.ObjectModel.ObservableCollection`1.#ctor">
  104. <summary>
  105. <see cref="T:System.Collections.ObjectModel.ObservableCollection`1" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
  106. </member>
  107. <member name="M:System.Collections.ObjectModel.ObservableCollection`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
  108. <summary>지정된 컬렉션에서 복사한 요소가 포함된 <see cref="T:System.Collections.ObjectModel.ObservableCollection`1" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
  109. <param name="collection">요소를 복사할 컬렉션입니다.</param>
  110. <exception cref="T:System.ArgumentNullException">
  111. <paramref name="collection" /> 매개 변수가 null인 경우</exception>
  112. </member>
  113. <member name="M:System.Collections.ObjectModel.ObservableCollection`1.BlockReentrancy">
  114. <summary>이 컬렉션을 변경하려는 재진입 시도를 허용하지 않습니다.</summary>
  115. <returns>개체를 삭제하는 데 사용할 수 있는 <see cref="T:System.IDisposable" /> 개체입니다.</returns>
  116. </member>
  117. <member name="M:System.Collections.ObjectModel.ObservableCollection`1.CheckReentrancy">
  118. <summary>이 컬렉션을 변경하려는 재진입 시도를 확인합니다.</summary>
  119. <exception cref="T:System.InvalidOperationException">
  120. <see cref="T:System.IDisposable" /> 반환 값이 아직 삭제되지 않은 상태에서 <see cref="M:System.Collections.ObjectModel.ObservableCollection`1.BlockReentrancy" />를 호출한 경우.일반적으로 이는 <see cref="E:System.Collections.ObjectModel.ObservableCollection`1.CollectionChanged" /> 이벤트 도중 이 컬렉션을 추가로 변경하려고 한 경우입니다.그러나 이 동작은 파생 클래스에서 <see cref="M:System.Collections.ObjectModel.ObservableCollection`1.BlockReentrancy" />를 호출하는 시점에 따라 다릅니다.</exception>
  121. </member>
  122. <member name="M:System.Collections.ObjectModel.ObservableCollection`1.ClearItems">
  123. <summary>컬렉션에서 모든 항목을 제거합니다.</summary>
  124. </member>
  125. <member name="E:System.Collections.ObjectModel.ObservableCollection`1.CollectionChanged">
  126. <summary>항목이 추가, 제거, 변경 또는 이동되거나 전체 목록이 새로 고쳐질 때 발생합니다.</summary>
  127. </member>
  128. <member name="M:System.Collections.ObjectModel.ObservableCollection`1.InsertItem(System.Int32,`0)">
  129. <summary>항목을 컬렉션 내의 지정된 인덱스에 삽입합니다.</summary>
  130. <param name="index">
  131. <paramref name="item" />을 삽입해야 하는 인덱스(0부터 시작)입니다.</param>
  132. <param name="item">삽입할 개체입니다.</param>
  133. </member>
  134. <member name="M:System.Collections.ObjectModel.ObservableCollection`1.Move(System.Int32,System.Int32)">
  135. <summary>지정된 인덱스에 있는 항목을 컬렉션에서 새 위치로 이동합니다.</summary>
  136. <param name="oldIndex">이동할 항목의 위치를 지정하는 인덱스(0부터 시작)입니다.</param>
  137. <param name="newIndex">항목의 새 위치를 지정하는 인덱스(0부터 시작)입니다.</param>
  138. </member>
  139. <member name="M:System.Collections.ObjectModel.ObservableCollection`1.MoveItem(System.Int32,System.Int32)">
  140. <summary>지정된 인덱스에 있는 항목을 컬렉션에서 새 위치로 이동합니다.</summary>
  141. <param name="oldIndex">이동할 항목의 위치를 지정하는 인덱스(0부터 시작)입니다.</param>
  142. <param name="newIndex">항목의 새 위치를 지정하는 인덱스(0부터 시작)입니다.</param>
  143. </member>
  144. <member name="M:System.Collections.ObjectModel.ObservableCollection`1.OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
  145. <summary>제공된 인수를 사용하여 <see cref="E:System.Collections.ObjectModel.ObservableCollection`1.CollectionChanged" /> 이벤트를 발생시킵니다.</summary>
  146. <param name="e">발생할 이벤트의 인수입니다.</param>
  147. </member>
  148. <member name="M:System.Collections.ObjectModel.ObservableCollection`1.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
  149. <summary>제공된 인수를 사용하여 <see cref="E:System.Collections.ObjectModel.ObservableCollection`1.PropertyChanged" /> 이벤트를 발생시킵니다.</summary>
  150. <param name="e">발생할 이벤트의 인수입니다.</param>
  151. </member>
  152. <member name="E:System.Collections.ObjectModel.ObservableCollection`1.PropertyChanged">
  153. <summary>속성 값이 변경될 때 발생합니다.</summary>
  154. </member>
  155. <member name="M:System.Collections.ObjectModel.ObservableCollection`1.RemoveItem(System.Int32)">
  156. <summary>컬렉션의 지정된 인덱스에서 항목을 제거합니다.</summary>
  157. <param name="index">제거할 요소의 0부터 시작하는 인덱스입니다.</param>
  158. </member>
  159. <member name="M:System.Collections.ObjectModel.ObservableCollection`1.SetItem(System.Int32,`0)">
  160. <summary>지정된 인덱스에 있는 요소를 바꿉니다.</summary>
  161. <param name="index">바꿀 요소의 인덱스(0부터 시작)입니다.</param>
  162. <param name="item">지정한 인덱스에 있는 요소의 새 값입니다.</param>
  163. </member>
  164. <member name="E:System.Collections.ObjectModel.ObservableCollection`1.System#ComponentModel#INotifyPropertyChanged#PropertyChanged">
  165. <summary>속성 값이 변경될 때 발생합니다.</summary>
  166. </member>
  167. <member name="T:System.Collections.ObjectModel.ReadOnlyDictionary`2">
  168. <summary>키/값 쌍의 읽기 전용 제네릭 컬렉션을 나타냅니다.</summary>
  169. <typeparam name="TKey">사전에 있는 키의 형식입니다.</typeparam>
  170. <typeparam name="TValue">사전에 있는 값의 형식입니다.</typeparam>
  171. </member>
  172. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.#ctor(System.Collections.Generic.IDictionary{`0,`1})">
  173. <summary>지정한 사전을 둘러싸는 래퍼인 <see cref="T:System.Collections.ObjectModel.ReadOnlyDictionary`2" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
  174. <param name="dictionary">래핑할 사전입니다.</param>
  175. </member>
  176. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.ContainsKey(`0)">
  177. <summary>지정된 키를 가진 요소가 사전에 포함되어 있는지 여부를 확인합니다.</summary>
  178. <returns>사전에 지정한 키를 가진 요소가 포함되어 있는 경우 true이고 그렇지 않은 경우 false입니다.</returns>
  179. <param name="key">사전에서 찾을 키입니다.</param>
  180. </member>
  181. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.Count">
  182. <summary>사전의 항목 수를 가져옵니다.</summary>
  183. <returns>사전의 항목 수입니다.</returns>
  184. </member>
  185. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.Dictionary">
  186. <summary>이 <see cref="T:System.Collections.ObjectModel.ReadOnlyDictionary`2" /> 개체에서 래핑하는 사전을 가져옵니다.</summary>
  187. <returns>이 개체에서 래핑되는 사전입니다.</returns>
  188. </member>
  189. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.GetEnumerator">
  190. <summary>
  191. <see cref="T:System.Collections.ObjectModel.ReadOnlyDictionary`2" />을 반복하는 열거자를 반환합니다.</summary>
  192. <returns>컬렉션을 반복하는 데 사용할 수 있는 열거자입니다.</returns>
  193. </member>
  194. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.Item(`0)">
  195. <summary>지정된 키를 가진 요소를 가져옵니다.</summary>
  196. <returns>지정된 키를 갖는 요소입니다.</returns>
  197. <param name="key">가져올 요소의 키입니다.</param>
  198. <exception cref="T:System.ArgumentNullException">
  199. <paramref name="key" />가 null입니다.</exception>
  200. <exception cref="T:System.Collections.Generic.KeyNotFoundException">속성이 검색되었지만 <paramref name="key" />가 없는 경우</exception>
  201. </member>
  202. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.Keys">
  203. <summary>사전의 키가 들어 있는 키 컬렉션을 가져옵니다.</summary>
  204. <returns>사전의 키가 들어 있는 키 컬렉션입니다.</returns>
  205. </member>
  206. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#Generic#ICollection{T}#Add(System.Collections.Generic.KeyValuePair{`0,`1})">
  207. <summary>모든 경우에 <see cref="T:System.NotSupportedException" /> 예외를 throw합니다.</summary>
  208. <param name="item">사전에 추가할 개체입니다.</param>
  209. <exception cref="T:System.NotSupportedException">모든 경우</exception>
  210. </member>
  211. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#Generic#ICollection{T}#Clear">
  212. <summary>모든 경우에 <see cref="T:System.NotSupportedException" /> 예외를 throw합니다.</summary>
  213. <exception cref="T:System.NotSupportedException">모든 경우</exception>
  214. </member>
  215. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#Generic#ICollection{T}#Contains(System.Collections.Generic.KeyValuePair{`0,`1})">
  216. <summary>사전에 특정 값이 들어 있는지 여부를 확인합니다.</summary>
  217. <returns>
  218. <paramref name="item" />이 사전에 있으면 true이고, 그렇지 않으면 false입니다.</returns>
  219. <param name="item">사전에서 찾을 개체입니다.</param>
  220. </member>
  221. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#Generic#ICollection{T}#CopyTo(System.Collections.Generic.KeyValuePair{`0,`1}[],System.Int32)">
  222. <summary>지정한 배열 인덱스부터 사전의 요소를 배열에 복사합니다.</summary>
  223. <param name="array">사전에서 복사한 요소의 대상인 1차원 배열입니다.배열에서 0부터 시작하는 인덱스를 사용해야 합니다.</param>
  224. <param name="arrayIndex">
  225. <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
  226. <exception cref="T:System.ArgumentNullException">
  227. <paramref name="array" />가 null입니다.</exception>
  228. <exception cref="T:System.ArgumentOutOfRangeException">
  229. <paramref name="arrayIndex" />가 0보다 작은 경우</exception>
  230. <exception cref="T:System.ArgumentException">
  231. <paramref name="array" />가 다차원 배열인 경우또는소스 사전의 요소 수가 <paramref name="arrayIndex" />부터 대상 <paramref name="array" /> 끝까지의 사용 가능한 공간보다 큰 경우또는<paramref name="T" /> 형식을 대상 <paramref name="array" />의 형식으로 자동 캐스팅할 수 없는 경우</exception>
  232. </member>
  233. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#Generic#ICollection{T}#IsReadOnly">
  234. <summary>사전이 읽기 전용인지 여부를 나타내는 값을 가져옵니다.</summary>
  235. <returns>모든 경우에 true를 반환합니다.</returns>
  236. </member>
  237. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#Generic#ICollection{T}#Remove(System.Collections.Generic.KeyValuePair{`0,`1})">
  238. <summary>모든 경우에 <see cref="T:System.NotSupportedException" /> 예외를 throw합니다.</summary>
  239. <returns>모든 경우에 <see cref="T:System.NotSupportedException" /> 예외를 throw합니다.</returns>
  240. <param name="item">사전에서 제거할 개체입니다.</param>
  241. <exception cref="T:System.NotSupportedException">모든 경우</exception>
  242. </member>
  243. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Add(`0,`1)">
  244. <summary>모든 경우에 <see cref="T:System.NotSupportedException" /> 예외를 throw합니다.</summary>
  245. <param name="key">추가할 요소의 키로 사용할 개체입니다.</param>
  246. <param name="value">추가할 요소의 값으로 사용할 개체입니다.</param>
  247. <exception cref="T:System.NotSupportedException">모든 경우</exception>
  248. </member>
  249. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Item(`0)">
  250. <summary>지정된 키를 가진 요소를 가져옵니다.</summary>
  251. <returns>지정된 키를 갖는 요소입니다.</returns>
  252. <param name="key">가져오거나 설정할 요소의 키입니다.</param>
  253. <exception cref="T:System.ArgumentNullException">
  254. <paramref name="key" />가 null입니다.</exception>
  255. <exception cref="T:System.Collections.Generic.KeyNotFoundException">속성이 검색되었지만 <paramref name="key" />가 없는 경우</exception>
  256. <exception cref="T:System.NotSupportedException">속성이 설정된 경우</exception>
  257. </member>
  258. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Keys">
  259. <summary>사전의 키가 들어 있는 컬렉션을 가져옵니다.</summary>
  260. <returns>
  261. <see cref="T:System.Collections.ObjectModel.ReadOnlyDictionary`2" />를 구현하는 개체의 키가 들어 있는 컬렉션입니다.</returns>
  262. </member>
  263. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Remove(`0)">
  264. <summary>모든 경우에 <see cref="T:System.NotSupportedException" /> 예외를 throw합니다.</summary>
  265. <returns>모든 경우에 <see cref="T:System.NotSupportedException" /> 예외를 throw합니다.</returns>
  266. <param name="key">제거할 요소의 키입니다.</param>
  267. <exception cref="T:System.NotSupportedException">모든 경우</exception>
  268. </member>
  269. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#Generic#IDictionary{TKey@TValue}#Values">
  270. <summary>사전의 값이 들어 있는 컬렉션을 가져옵니다.</summary>
  271. <returns>
  272. <see cref="T:System.Collections.ObjectModel.ReadOnlyDictionary`2" />를 구현하는 개체의 값이 들어 있는 컬렉션입니다.</returns>
  273. </member>
  274. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Keys">
  275. <summary>읽기 전용 사전의 키를 포함하는 열거 가능한 컬렉션을 가져옵니다. </summary>
  276. <returns>읽기 전용 사전의 키를 포함하는 열거 가능한 컬렉션입니다.</returns>
  277. </member>
  278. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#Generic#IReadOnlyDictionary{TKey@TValue}#Values">
  279. <summary>읽기 전용 사전의 값을 포함하는 열거 가능한 컬렉션을 가져옵니다.</summary>
  280. <returns>읽기 전용 사전의 값을 포함하는 열거 가능한 컬렉션입니다.</returns>
  281. </member>
  282. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  283. <summary>지정한 배열 인덱스부터 사전의 요소를 배열에 복사합니다.</summary>
  284. <param name="array">사전에서 복사한 요소의 대상인 1차원 배열입니다.배열에서 0부터 시작하는 인덱스를 사용해야 합니다.</param>
  285. <param name="index">
  286. <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다. </param>
  287. <exception cref="T:System.ArgumentNullException">
  288. <paramref name="array" />가 null입니다. </exception>
  289. <exception cref="T:System.ArgumentOutOfRangeException">
  290. <paramref name="index" />가 0보다 작은 경우 </exception>
  291. <exception cref="T:System.ArgumentException">
  292. <paramref name="array" />가 다차원 배열인 경우또는 소스 사전의 요소 수가 <paramref name="index" />부터 대상 <paramref name="array" /> 끝까지의 사용 가능한 공간보다 큰 경우또는 소스 사전의 형식이 대상 <paramref name="array" />의 형식으로 자동 캐스팅될 수 없는 경우</exception>
  293. </member>
  294. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#ICollection#IsSynchronized">
  295. <summary>사전에 대한 액세스가 동기화되어 스레드로부터 안전한지 여부를 나타내는 값을 가져옵니다.</summary>
  296. <returns>사전에 대한 액세스가 동기화되어 스레드로부터 안전하면 true이고, 그렇지 않으면 false입니다.</returns>
  297. </member>
  298. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#ICollection#SyncRoot">
  299. <summary>사전에 대한 액세스를 동기화하는 데 사용할 수 있는 개체를 가져옵니다.</summary>
  300. <returns>사전에 대한 액세스를 동기화하는 데 사용할 수 있는 개체입니다.</returns>
  301. </member>
  302. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#IDictionary#Add(System.Object,System.Object)">
  303. <summary>모든 경우에 <see cref="T:System.NotSupportedException" /> 예외를 throw합니다.</summary>
  304. <param name="key">추가할 요소의 키입니다. </param>
  305. <param name="value">추가할 요소의 값입니다. </param>
  306. <exception cref="T:System.NotSupportedException">모든 경우</exception>
  307. </member>
  308. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#IDictionary#Clear">
  309. <summary>모든 경우에 <see cref="T:System.NotSupportedException" /> 예외를 throw합니다.</summary>
  310. <exception cref="T:System.NotSupportedException">모든 경우</exception>
  311. </member>
  312. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#IDictionary#Contains(System.Object)">
  313. <summary>지정된 키를 가진 요소가 사전에 포함되어 있는지 여부를 확인합니다.</summary>
  314. <returns>사전에 지정한 키를 가진 요소가 포함되어 있는 경우 true이고 그렇지 않은 경우 false입니다.</returns>
  315. <param name="key">사전에서 찾을 키입니다.</param>
  316. <exception cref="T:System.ArgumentNullException">
  317. <paramref name="key" />가 null입니다. </exception>
  318. </member>
  319. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#IDictionary#GetEnumerator">
  320. <summary>사전의 열거자를 반환합니다.</summary>
  321. <returns>사전의 열거자입니다.</returns>
  322. </member>
  323. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#IDictionary#IsFixedSize">
  324. <summary>사전의 크기가 고정되어 있는지 여부를 나타내는 값을 가져옵니다.</summary>
  325. <returns>사전의 크기가 고정되어 있으면 true이고, 그렇지 않으면 false입니다.</returns>
  326. </member>
  327. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#IDictionary#IsReadOnly">
  328. <summary>사전이 읽기 전용인지 여부를 나타내는 값을 가져옵니다.</summary>
  329. <returns>모든 경우에 true를 반환합니다.</returns>
  330. </member>
  331. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#IDictionary#Item(System.Object)">
  332. <summary>지정된 키를 가진 요소를 가져옵니다.</summary>
  333. <returns>지정된 키를 갖는 요소입니다.</returns>
  334. <param name="key">가져오거나 설정할 요소의 키입니다. </param>
  335. <exception cref="T:System.ArgumentNullException">
  336. <paramref name="key" />가 null입니다. </exception>
  337. <exception cref="T:System.NotSupportedException">속성이 설정된 경우또는 속성이 설정되어 있고 <paramref name="key" />가 컬렉션에 없으며 사전의 크기가 고정된 경우 </exception>
  338. </member>
  339. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#IDictionary#Keys">
  340. <summary>사전의 키가 들어 있는 컬렉션을 가져옵니다.</summary>
  341. <returns>사전의 키가 들어 있는 컬렉션입니다.</returns>
  342. </member>
  343. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#IDictionary#Remove(System.Object)">
  344. <summary>모든 경우에 <see cref="T:System.NotSupportedException" /> 예외를 throw합니다.</summary>
  345. <param name="key">제거할 요소의 키입니다. </param>
  346. <exception cref="T:System.NotSupportedException">모든 경우</exception>
  347. </member>
  348. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#IDictionary#Values">
  349. <summary>사전의 값이 들어 있는 컬렉션을 가져옵니다.</summary>
  350. <returns>사전의 값이 들어 있는 컬렉션입니다.</returns>
  351. </member>
  352. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.System#Collections#IEnumerable#GetEnumerator">
  353. <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
  354. <returns>컬렉션을 반복하는 데 사용할 수 있는 열거자입니다.</returns>
  355. </member>
  356. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.TryGetValue(`0,`1@)">
  357. <summary>지정된 키와 연결된 값을 검색합니다.</summary>
  358. <returns>
  359. <see cref="T:System.Collections.ObjectModel.ReadOnlyDictionary`2" />를 구현하는 개체에 지정한 키가 있는 요소가 포함되어 있으면 true이고, 그렇지 않으면 false입니다.</returns>
  360. <param name="key">값을 검색할 키입니다.</param>
  361. <param name="value">이 메서드가 반환될 때 지정된 키가 있으면 해당 키와 연결된 값이고, 그렇지 않으면 <paramref name="value" /> 매개 변수의 형식에 대한 기본값입니다.이 매개 변수는 초기화되지 않은 상태로 전달됩니다.</param>
  362. </member>
  363. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.Values">
  364. <summary>사전의 값이 들어 있는 컬렉션을 가져옵니다.</summary>
  365. <returns>
  366. <see cref="T:System.Collections.ObjectModel.ReadOnlyDictionary`2" />를 구현하는 개체의 값이 들어 있는 컬렉션입니다.</returns>
  367. </member>
  368. <member name="T:System.Collections.ObjectModel.ReadOnlyDictionary`2.KeyCollection">
  369. <summary>
  370. <see cref="T:System.Collections.ObjectModel.ReadOnlyDictionary`2" /> 개체 키의 읽기 전용 컬렉션을 나타냅니다.</summary>
  371. </member>
  372. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.KeyCollection.CopyTo(`0[],System.Int32)">
  373. <summary>특정 배열 인덱스부터 컬렉션의 요소를 배열에 복사합니다.</summary>
  374. <param name="array">컬렉션에서 복사한 요소의 대상인 1차원 배열입니다.배열에서 0부터 시작하는 인덱스를 사용해야 합니다.</param>
  375. <param name="arrayIndex">
  376. <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
  377. <exception cref="T:System.ArgumentNullException">
  378. <paramref name="array" />가 null입니다.</exception>
  379. <exception cref="T:System.ArgumentOutOfRangeException">
  380. <paramref name="arrayIndex" />가 0보다 작은 경우</exception>
  381. <exception cref="T:System.ArgumentException">
  382. <paramref name="array" />가 다차원 배열인 경우또는소스 컬렉션의 요소 수가 <paramref name="arrayIndex" />부터 대상 <paramref name="array" /> 끝까지의 사용 가능한 공간보다 큰 경우또는<paramref name="T" /> 형식을 대상 <paramref name="array" />의 형식으로 자동 캐스팅할 수 없는 경우</exception>
  383. </member>
  384. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.KeyCollection.Count">
  385. <summary>컬렉션에 있는 요소의 수를 가져옵니다.</summary>
  386. <returns>컬렉션에 있는 요소의 수입니다.</returns>
  387. </member>
  388. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.KeyCollection.GetEnumerator">
  389. <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
  390. <returns>컬렉션을 반복하는 데 사용할 수 있는 열거자입니다.</returns>
  391. </member>
  392. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Add(`0)">
  393. <summary>모든 경우에 <see cref="T:System.NotSupportedException" /> 예외를 throw합니다.</summary>
  394. <param name="item">컬렉션에 추가할 개체입니다.</param>
  395. <exception cref="T:System.NotSupportedException">모든 경우</exception>
  396. </member>
  397. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Clear">
  398. <summary>모든 경우에 <see cref="T:System.NotSupportedException" /> 예외를 throw합니다.</summary>
  399. <exception cref="T:System.NotSupportedException">모든 경우</exception>
  400. </member>
  401. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Contains(`0)">
  402. <summary>컬렉션에 특정 값이 있는지 여부를 확인합니다.</summary>
  403. <returns>
  404. <paramref name="item" />이 컬렉션에 있으면 true이고, 그렇지 않으면 false입니다.</returns>
  405. <param name="item">컬렉션에서 찾을 개체입니다.</param>
  406. </member>
  407. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#IsReadOnly">
  408. <summary>컬렉션이 읽기 전용인지 여부를 나타내는 값을 가져옵니다.</summary>
  409. <returns>모든 경우에 true를 반환합니다.</returns>
  410. </member>
  411. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.KeyCollection.System#Collections#Generic#ICollection{T}#Remove(`0)">
  412. <summary>모든 경우에 <see cref="T:System.NotSupportedException" /> 예외를 throw합니다.</summary>
  413. <returns>컬렉션에서 <paramref name="item" />이 성공적으로 제거되었으면 true이고, 그렇지 않으면 false입니다.이 메서드는 <paramref name="item" />이 원래 컬렉션에 없는 경우에도 false를 반환합니다.</returns>
  414. <param name="item">컬렉션에서 제거할 개체입니다.</param>
  415. <exception cref="T:System.NotSupportedException">모든 경우</exception>
  416. </member>
  417. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.KeyCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  418. <summary>특정 배열 인덱스부터 컬렉션의 요소를 배열에 복사합니다.</summary>
  419. <param name="array">컬렉션에서 복사한 요소의 대상인 1차원 배열입니다.배열에서 0부터 시작하는 인덱스를 사용해야 합니다.</param>
  420. <param name="index">
  421. <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
  422. <exception cref="T:System.ArgumentNullException">
  423. <paramref name="array" />가 null입니다.</exception>
  424. <exception cref="T:System.ArgumentOutOfRangeException">
  425. <paramref name="index" />가 0보다 작은 경우</exception>
  426. <exception cref="T:System.ArgumentException">
  427. <paramref name="array" />가 다차원 배열인 경우또는소스 컬렉션의 요소 수가 <paramref name="index" />부터 대상 <paramref name="array" /> 끝까지의 사용 가능한 공간보다 큰 경우</exception>
  428. </member>
  429. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.KeyCollection.System#Collections#ICollection#IsSynchronized">
  430. <summary>해당 컬렉션에 대한 액세스가 동기화되어 스레드로부터 안전하게 보호되는지 여부를 나타내는 값을 가져옵니다.</summary>
  431. <returns>컬렉션에 대한 액세스가 동기화(스레드로부터 안전)되면 true이고, 그렇지 않으면 false입니다.</returns>
  432. </member>
  433. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.KeyCollection.System#Collections#ICollection#SyncRoot">
  434. <summary>컬렉션에 대한 액세스를 동기화하는 데 사용할 수 있는 개체를 가져옵니다.</summary>
  435. <returns>컬렉션에 대한 액세스를 동기화하는 데 사용할 수 있는 개체입니다.</returns>
  436. </member>
  437. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.KeyCollection.System#Collections#IEnumerable#GetEnumerator">
  438. <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
  439. <returns>컬렉션을 반복하는 데 사용할 수 있는 열거자입니다.</returns>
  440. </member>
  441. <member name="T:System.Collections.ObjectModel.ReadOnlyDictionary`2.ValueCollection">
  442. <summary>
  443. <see cref="T:System.Collections.ObjectModel.ReadOnlyDictionary`2" /> 개체 값의 읽기 전용 컬렉션을 나타냅니다.</summary>
  444. </member>
  445. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.ValueCollection.CopyTo(`1[],System.Int32)">
  446. <summary>특정 배열 인덱스부터 컬렉션의 요소를 배열에 복사합니다.</summary>
  447. <param name="array">컬렉션에서 복사한 요소의 대상인 1차원 배열입니다.배열에서 0부터 시작하는 인덱스를 사용해야 합니다.</param>
  448. <param name="arrayIndex">
  449. <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
  450. <exception cref="T:System.ArgumentNullException">
  451. <paramref name="array" />가 null입니다.</exception>
  452. <exception cref="T:System.ArgumentOutOfRangeException">
  453. <paramref name="arrayIndex" />가 0보다 작은 경우</exception>
  454. <exception cref="T:System.ArgumentException">
  455. <paramref name="array" />가 다차원 배열인 경우또는소스 컬렉션의 요소 수가 <paramref name="arrayIndex" />부터 대상 <paramref name="array" /> 끝까지의 사용 가능한 공간보다 큰 경우또는<paramref name="T" /> 형식을 대상 <paramref name="array" />의 형식으로 자동 캐스팅할 수 없는 경우</exception>
  456. </member>
  457. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.ValueCollection.Count">
  458. <summary>컬렉션에 있는 요소의 수를 가져옵니다.</summary>
  459. <returns>컬렉션에 있는 요소의 수입니다.</returns>
  460. </member>
  461. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.ValueCollection.GetEnumerator">
  462. <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
  463. <returns>컬렉션을 반복하는 데 사용할 수 있는 열거자입니다.</returns>
  464. </member>
  465. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Add(`1)">
  466. <summary>모든 경우에 <see cref="T:System.NotSupportedException" /> 예외를 throw합니다.</summary>
  467. <param name="item">컬렉션에 추가할 개체입니다.</param>
  468. <exception cref="T:System.NotSupportedException">모든 경우</exception>
  469. </member>
  470. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Clear">
  471. <summary>모든 경우에 <see cref="T:System.NotSupportedException" /> 예외를 throw합니다.</summary>
  472. <exception cref="T:System.NotSupportedException">모든 경우</exception>
  473. </member>
  474. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Contains(`1)">
  475. <summary>컬렉션에 특정 값이 있는지 여부를 확인합니다.</summary>
  476. <returns>
  477. <paramref name="item" />이 컬렉션에 있으면 true이고, 그렇지 않으면 false입니다.</returns>
  478. <param name="item">컬렉션에서 찾을 개체입니다.</param>
  479. </member>
  480. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#IsReadOnly">
  481. <summary>컬렉션이 읽기 전용인지 여부를 나타내는 값을 가져옵니다.</summary>
  482. <returns>모든 경우에 true를 반환합니다.</returns>
  483. </member>
  484. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.ValueCollection.System#Collections#Generic#ICollection{T}#Remove(`1)">
  485. <summary>모든 경우에 <see cref="T:System.NotSupportedException" /> 예외를 throw합니다.</summary>
  486. <returns>컬렉션에서 <paramref name="item" />이 성공적으로 제거되었으면 true이고, 그렇지 않으면 false입니다.이 메서드는 <paramref name="item" />이 원래 컬렉션에 없는 경우에도 false를 반환합니다.</returns>
  487. <param name="item">컬렉션에서 제거할 개체입니다.</param>
  488. <exception cref="T:System.NotSupportedException">모든 경우</exception>
  489. </member>
  490. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.ValueCollection.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
  491. <summary>특정 배열 인덱스부터 컬렉션의 요소를 배열에 복사합니다.</summary>
  492. <param name="array">컬렉션에서 복사한 요소의 대상인 1차원 배열입니다.배열에서 0부터 시작하는 인덱스를 사용해야 합니다.</param>
  493. <param name="index">
  494. <paramref name="array" />에서 복사가 시작되는 인덱스(0부터 시작)입니다.</param>
  495. <exception cref="T:System.ArgumentNullException">
  496. <paramref name="array" />가 null입니다.</exception>
  497. <exception cref="T:System.ArgumentOutOfRangeException">
  498. <paramref name="index" />가 0보다 작은 경우</exception>
  499. <exception cref="T:System.ArgumentException">
  500. <paramref name="array" />가 다차원 배열인 경우또는소스 컬렉션의 요소 수가 <paramref name="index" />부터 대상 <paramref name="array" /> 끝까지의 사용 가능한 공간보다 큰 경우</exception>
  501. </member>
  502. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.ValueCollection.System#Collections#ICollection#IsSynchronized">
  503. <summary>해당 컬렉션에 대한 액세스가 동기화되어 스레드로부터 안전하게 보호되는지 여부를 나타내는 값을 가져옵니다.</summary>
  504. <returns>컬렉션에 대한 액세스가 동기화(스레드로부터 안전)되면 true이고, 그렇지 않으면 false입니다.</returns>
  505. </member>
  506. <member name="P:System.Collections.ObjectModel.ReadOnlyDictionary`2.ValueCollection.System#Collections#ICollection#SyncRoot">
  507. <summary>컬렉션에 대한 액세스를 동기화하는 데 사용할 수 있는 개체를 가져옵니다.</summary>
  508. <returns>컬렉션에 대한 액세스를 동기화하는 데 사용할 수 있는 개체입니다.</returns>
  509. </member>
  510. <member name="M:System.Collections.ObjectModel.ReadOnlyDictionary`2.ValueCollection.System#Collections#IEnumerable#GetEnumerator">
  511. <summary>컬렉션을 반복하는 열거자를 반환합니다.</summary>
  512. <returns>컬렉션을 반복하는 데 사용할 수 있는 열거자입니다.</returns>
  513. </member>
  514. <member name="T:System.Collections.ObjectModel.ReadOnlyObservableCollection`1">
  515. <summary>읽기 전용 <see cref="T:System.Collections.ObjectModel.ObservableCollection`1" />을 나타냅니다.</summary>
  516. <typeparam name="T">컬렉션에 있는 요소의 형식입니다.</typeparam>
  517. </member>
  518. <member name="M:System.Collections.ObjectModel.ReadOnlyObservableCollection`1.#ctor(System.Collections.ObjectModel.ObservableCollection{`0})">
  519. <summary>지정된 <see cref="T:System.Collections.ObjectModel.ObservableCollection`1" />에 대한 래퍼 역할을 하는 <see cref="T:System.Collections.ObjectModel.ReadOnlyObservableCollection`1" />의 새 인스턴스를 초기화합니다.</summary>
  520. <param name="list">
  521. <see cref="T:System.Collections.ObjectModel.ReadOnlyObservableCollection`1" /> 클래스의 이 인스턴스를 만드는 데 사용할 <see cref="T:System.Collections.ObjectModel.ObservableCollection`1" />입니다.</param>
  522. <exception cref="T:System.ArgumentNullException">
  523. <paramref name="list" />가 null입니다.</exception>
  524. </member>
  525. <member name="E:System.Collections.ObjectModel.ReadOnlyObservableCollection`1.CollectionChanged">
  526. <summary>항목이 추가되거나 제거되는 경우 발생합니다.</summary>
  527. </member>
  528. <member name="M:System.Collections.ObjectModel.ReadOnlyObservableCollection`1.OnCollectionChanged(System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
  529. <summary>제공된 인수를 사용하여 <see cref="E:System.Collections.ObjectModel.ReadOnlyObservableCollection`1.CollectionChanged" /> 이벤트를 발생시킵니다.</summary>
  530. <param name="args">발생할 이벤트의 인수입니다.</param>
  531. </member>
  532. <member name="M:System.Collections.ObjectModel.ReadOnlyObservableCollection`1.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
  533. <summary>제공된 인수를 사용하여 <see cref="E:System.Collections.ObjectModel.ReadOnlyObservableCollection`1.PropertyChanged" /> 이벤트를 발생시킵니다.</summary>
  534. <param name="args">발생할 이벤트의 인수입니다.</param>
  535. </member>
  536. <member name="E:System.Collections.ObjectModel.ReadOnlyObservableCollection`1.PropertyChanged">
  537. <summary>속성 값이 변경될 때 발생합니다.</summary>
  538. </member>
  539. <member name="E:System.Collections.ObjectModel.ReadOnlyObservableCollection`1.System#Collections#Specialized#INotifyCollectionChanged#CollectionChanged">
  540. <summary>컬렉션이 변경되면 이 이벤트가 발생합니다.</summary>
  541. </member>
  542. <member name="E:System.Collections.ObjectModel.ReadOnlyObservableCollection`1.System#ComponentModel#INotifyPropertyChanged#PropertyChanged">
  543. <summary>속성 값이 변경될 때 발생합니다.</summary>
  544. </member>
  545. <member name="T:System.Collections.Specialized.INotifyCollectionChanged">
  546. <summary>항목이 추가 및 제거되거나 전체 목록이 새로 고쳐진 경우와 같은 동적 변경 내용을 수신기에 알립니다.</summary>
  547. </member>
  548. <member name="E:System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged">
  549. <summary>컬렉션이 변경되면 이 이벤트가 발생합니다.</summary>
  550. </member>
  551. <member name="T:System.Collections.Specialized.NotifyCollectionChangedAction">
  552. <summary>
  553. <see cref="E:System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged" /> 이벤트를 발생시킨 작업을 설명합니다. </summary>
  554. </member>
  555. <member name="F:System.Collections.Specialized.NotifyCollectionChangedAction.Add">
  556. <summary>컬렉션에 하나 이상의 항목이 추가되었습니다.</summary>
  557. </member>
  558. <member name="F:System.Collections.Specialized.NotifyCollectionChangedAction.Move">
  559. <summary>컬렉션 내에서 하나 이상의 항목이 이동했습니다.</summary>
  560. </member>
  561. <member name="F:System.Collections.Specialized.NotifyCollectionChangedAction.Remove">
  562. <summary>컬렉션에서 하나 이상의 항목이 제거되었습니다.</summary>
  563. </member>
  564. <member name="F:System.Collections.Specialized.NotifyCollectionChangedAction.Replace">
  565. <summary>컬렉션에서 하나 이상의 항목이 바뀌었습니다.</summary>
  566. </member>
  567. <member name="F:System.Collections.Specialized.NotifyCollectionChangedAction.Reset">
  568. <summary>컬렉션의 내용이 크게 변경되었습니다.</summary>
  569. </member>
  570. <member name="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs">
  571. <summary>
  572. <see cref="E:System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged" /> 이벤트에 대한 데이터를 제공합니다.</summary>
  573. </member>
  574. <member name="M:System.Collections.Specialized.NotifyCollectionChangedEventArgs.#ctor(System.Collections.Specialized.NotifyCollectionChangedAction)">
  575. <summary>
  576. <see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Reset" /> 변경을 설명하는 <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
  577. <param name="action">이벤트를 발생시킨 작업입니다.<see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Reset" />으로 설정되어야 합니다.</param>
  578. </member>
  579. <member name="M:System.Collections.Specialized.NotifyCollectionChangedEventArgs.#ctor(System.Collections.Specialized.NotifyCollectionChangedAction,System.Collections.IList)">
  580. <summary>여러 항목 변경을 설명하는 <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
  581. <param name="action">이벤트를 발생시킨 작업입니다.<see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Reset" />, <see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Add" /> 또는 <see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Remove" />로 설정될 수 있습니다.</param>
  582. <param name="changedItems">변경의 영향을 받은 여러 항목입니다.</param>
  583. </member>
  584. <member name="M:System.Collections.Specialized.NotifyCollectionChangedEventArgs.#ctor(System.Collections.Specialized.NotifyCollectionChangedAction,System.Collections.IList,System.Collections.IList)">
  585. <summary>여러 항목의 <see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Replace" /> 변경을 설명하는 <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
  586. <param name="action">이벤트를 발생시킨 작업입니다.<see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Replace" />로만 설정될 수 있습니다.</param>
  587. <param name="newItems">원래 항목을 대체하는 새 항목입니다.</param>
  588. <param name="oldItems">대체된 원래 항목입니다.</param>
  589. <exception cref="T:System.ArgumentException">
  590. <paramref name="action" />이 Replace가 아닌 경우</exception>
  591. <exception cref="T:System.ArgumentNullException">
  592. <paramref name="oldItems" /> 또는 <paramref name="newItems" />가 null인 경우</exception>
  593. </member>
  594. <member name="M:System.Collections.Specialized.NotifyCollectionChangedEventArgs.#ctor(System.Collections.Specialized.NotifyCollectionChangedAction,System.Collections.IList,System.Collections.IList,System.Int32)">
  595. <summary>여러 항목의 <see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Replace" /> 변경을 설명하는 <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
  596. <param name="action">이벤트를 발생시킨 작업입니다.<see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Replace" />로만 설정될 수 있습니다.</param>
  597. <param name="newItems">원래 항목을 대체하는 새 항목입니다.</param>
  598. <param name="oldItems">대체된 원래 항목입니다.</param>
  599. <param name="startingIndex">대체되는 항목 중 첫 번째 항목의 인덱스입니다.</param>
  600. <exception cref="T:System.ArgumentException">
  601. <paramref name="action" />이 Replace가 아닌 경우</exception>
  602. <exception cref="T:System.ArgumentNullException">
  603. <paramref name="oldItems" /> 또는 <paramref name="newItems" />가 null인 경우</exception>
  604. </member>
  605. <member name="M:System.Collections.Specialized.NotifyCollectionChangedEventArgs.#ctor(System.Collections.Specialized.NotifyCollectionChangedAction,System.Collections.IList,System.Int32)">
  606. <summary>여러 항목 변경이나 <see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Reset" /> 변경을 설명하는 <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
  607. <param name="action">이벤트를 발생시킨 작업입니다.<see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Reset" />, <see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Add" /> 또는 <see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Remove" />로 설정될 수 있습니다.</param>
  608. <param name="changedItems">변경의 영향을 받은 항목입니다.</param>
  609. <param name="startingIndex">변경이 발생한 인덱스입니다.</param>
  610. <exception cref="T:System.ArgumentException">
  611. <paramref name="action" />이 Reset, Add 또는 Remove가 아닌 경우, <paramref name="action" />이 Reset이고 <paramref name="changedItems" />가 null이 아니거나 <paramref name="startingIndex" />가 -1이 아닌 경우 또는 action이 Add 또는 Remove이고 <paramref name="startingIndex" />가 -1보다 작은 경우</exception>
  612. <exception cref="T:System.ArgumentNullException">
  613. <paramref name="action" />이 Add 또는 Remove이고 <paramref name="changedItems" />가 null인 경우</exception>
  614. </member>
  615. <member name="M:System.Collections.Specialized.NotifyCollectionChangedEventArgs.#ctor(System.Collections.Specialized.NotifyCollectionChangedAction,System.Collections.IList,System.Int32,System.Int32)">
  616. <summary>여러 항목의 <see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Move" /> 변경을 설명하는 <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
  617. <param name="action">이벤트를 발생시킨 작업입니다.<see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Move" />로만 설정될 수 있습니다.</param>
  618. <param name="changedItems">변경의 영향을 받은 항목입니다.</param>
  619. <param name="index">변경된 항목의 새 인덱스입니다.</param>
  620. <param name="oldIndex">변경된 항목의 이전 인덱스입니다.</param>
  621. <exception cref="T:System.ArgumentException">
  622. <paramref name="action" />이 Move가 아니거나 <paramref name="index" />가 0보다 작은 경우</exception>
  623. </member>
  624. <member name="M:System.Collections.Specialized.NotifyCollectionChangedEventArgs.#ctor(System.Collections.Specialized.NotifyCollectionChangedAction,System.Object)">
  625. <summary>단일 항목 변경을 설명하는 <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
  626. <param name="action">이벤트를 발생시킨 작업입니다.<see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Reset" />, <see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Add" /> 또는 <see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Remove" />로 설정될 수 있습니다.</param>
  627. <param name="changedItem">변경의 영향을 받은 항목입니다.</param>
  628. <exception cref="T:System.ArgumentException">
  629. <paramref name="action" />이 Reset, Add 또는 Remove가 아니거나 <paramref name="action" />이 Reset이고 <paramref name="changedItem" />가 null이 아닌 경우</exception>
  630. </member>
  631. <member name="M:System.Collections.Specialized.NotifyCollectionChangedEventArgs.#ctor(System.Collections.Specialized.NotifyCollectionChangedAction,System.Object,System.Int32)">
  632. <summary>단일 항목 변경을 설명하는 <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
  633. <param name="action">이벤트를 발생시킨 작업입니다.<see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Reset" />, <see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Add" /> 또는 <see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Remove" />로 설정될 수 있습니다.</param>
  634. <param name="changedItem">변경의 영향을 받은 항목입니다.</param>
  635. <param name="index">변경이 발생한 인덱스입니다.</param>
  636. <exception cref="T:System.ArgumentException">
  637. <paramref name="action" />이 Reset, Add 또는 Remove가 아니거나, <paramref name="action" />이 Reset이고 <paramref name="changedItems" />가 null이 아니거나 <paramref name="index" />가 -1이 아닌 경우</exception>
  638. </member>
  639. <member name="M:System.Collections.Specialized.NotifyCollectionChangedEventArgs.#ctor(System.Collections.Specialized.NotifyCollectionChangedAction,System.Object,System.Int32,System.Int32)">
  640. <summary>단일 항목의 <see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Move" /> 변경을 설명하는 <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
  641. <param name="action">이벤트를 발생시킨 작업입니다.<see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Move" />로만 설정될 수 있습니다.</param>
  642. <param name="changedItem">변경의 영향을 받은 항목입니다.</param>
  643. <param name="index">변경된 항목의 새 인덱스입니다.</param>
  644. <param name="oldIndex">변경된 항목의 이전 인덱스입니다.</param>
  645. <exception cref="T:System.ArgumentException">
  646. <paramref name="action" />이 Move가 아니거나 <paramref name="index" />가 0보다 작은 경우</exception>
  647. </member>
  648. <member name="M:System.Collections.Specialized.NotifyCollectionChangedEventArgs.#ctor(System.Collections.Specialized.NotifyCollectionChangedAction,System.Object,System.Object)">
  649. <summary>단일 항목의 <see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Replace" /> 변경을 설명하는 <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
  650. <param name="action">이벤트를 발생시킨 작업입니다.<see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Replace" />로만 설정될 수 있습니다.</param>
  651. <param name="newItem">원래 항목을 대체하는 새 항목입니다.</param>
  652. <param name="oldItem">대체된 원래 항목입니다.</param>
  653. <exception cref="T:System.ArgumentException">
  654. <paramref name="action" />이 Replace가 아닌 경우</exception>
  655. </member>
  656. <member name="M:System.Collections.Specialized.NotifyCollectionChangedEventArgs.#ctor(System.Collections.Specialized.NotifyCollectionChangedAction,System.Object,System.Object,System.Int32)">
  657. <summary>단일 항목의 <see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Replace" /> 변경을 설명하는 <see cref="T:System.Collections.Specialized.NotifyCollectionChangedEventArgs" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
  658. <param name="action">이벤트를 발생시킨 작업입니다.<see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Replace" />로 설정될 수 있습니다.</param>
  659. <param name="newItem">원래 항목을 대체하는 새 항목입니다.</param>
  660. <param name="oldItem">대체된 원래 항목입니다.</param>
  661. <param name="index">대체되는 항목의 인덱스입니다.</param>
  662. <exception cref="T:System.ArgumentException">
  663. <paramref name="action" />이 Replace가 아닌 경우</exception>
  664. </member>
  665. <member name="P:System.Collections.Specialized.NotifyCollectionChangedEventArgs.Action">
  666. <summary>이벤트를 발생시킨 작업을 가져옵니다. </summary>
  667. <returns>이벤트를 발생시킨 작업을 설명하는 <see cref="T:System.Collections.Specialized.NotifyCollectionChangedAction" /> 값입니다.</returns>
  668. </member>
  669. <member name="P:System.Collections.Specialized.NotifyCollectionChangedEventArgs.NewItems">
  670. <summary>변경에 관련된 새 항목의 목록을 가져옵니다.</summary>
  671. <returns>변경에 관련된 새 항목의 목록입니다.</returns>
  672. </member>
  673. <member name="P:System.Collections.Specialized.NotifyCollectionChangedEventArgs.NewStartingIndex">
  674. <summary>변경이 발생한 인덱스를 가져옵니다.</summary>
  675. <returns>변경이 발생한 인덱스(0부터 시작)입니다.</returns>
  676. </member>
  677. <member name="P:System.Collections.Specialized.NotifyCollectionChangedEventArgs.OldItems">
  678. <summary>
  679. <see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Replace" />, Remove 또는 Move 작업의 영향을 받는 항목 목록을 가져옵니다.</summary>
  680. <returns>
  681. <see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Replace" />, Remove 또는 Move 작업의 영향을 받는 항목 목록입니다.</returns>
  682. </member>
  683. <member name="P:System.Collections.Specialized.NotifyCollectionChangedEventArgs.OldStartingIndex">
  684. <summary>
  685. <see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Move" />, Remove 또는 Replace 작업이 발생한 인덱스를 가져옵니다.</summary>
  686. <returns>
  687. <see cref="F:System.Collections.Specialized.NotifyCollectionChangedAction.Move" />, Remove 또는 Replace 작업이 발생한 인덱스(0부터 시작)입니다.</returns>
  688. </member>
  689. <member name="T:System.Collections.Specialized.NotifyCollectionChangedEventHandler">
  690. <summary>
  691. <see cref="E:System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged" /> 이벤트를 처리하는 메서드를 나타냅니다. </summary>
  692. <param name="sender">이벤트를 발생시킨 개체입니다.</param>
  693. <param name="e">이벤트 정보입니다.</param>
  694. </member>
  695. <member name="T:System.ComponentModel.DataErrorsChangedEventArgs">
  696. <summary>
  697. <see cref="E:System.ComponentModel.INotifyDataErrorInfo.ErrorsChanged" /> 이벤트에 대한 데이터를 제공합니다.</summary>
  698. </member>
  699. <member name="M:System.ComponentModel.DataErrorsChangedEventArgs.#ctor(System.String)">
  700. <summary>
  701. <see cref="T:System.ComponentModel.DataErrorsChangedEventArgs" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
  702. <param name="propertyName">오류가 있는 속성의 이름입니다. 오류가 개체 수준인 경우 null 또는 <see cref="F:System.String.Empty" />입니다.</param>
  703. </member>
  704. <member name="P:System.ComponentModel.DataErrorsChangedEventArgs.PropertyName">
  705. <summary>오류가 있는 속성의 이름을 가져옵니다.</summary>
  706. <returns>오류가 있는 속성의 이름입니다.오류가 개체 수준인 경우 null또는 <see cref="F:System.String.Empty" />입니다.</returns>
  707. </member>
  708. <member name="T:System.ComponentModel.INotifyDataErrorInfo">
  709. <summary>데이터 엔터티 클래스에서 사용자 지정 동기 및 비동기 유효성 검사 지원을 제공하기 위해 구현할 수 있는 멤버를 정의합니다.</summary>
  710. </member>
  711. <member name="E:System.ComponentModel.INotifyDataErrorInfo.ErrorsChanged">
  712. <summary>속성 또는 전체 엔터티에 대한 유효성 검사 오류가 변경된 경우 발생합니다. </summary>
  713. </member>
  714. <member name="M:System.ComponentModel.INotifyDataErrorInfo.GetErrors(System.String)">
  715. <summary>지정된 속성 또는 전체 엔터티에 대한 유효성 검사 오류를 가져옵니다.</summary>
  716. <returns>속성 또는 엔터티에 대한 유효성 검사 오류입니다.</returns>
  717. <param name="propertyName">유효성 검사 오류를 검색할 속성의 이름이거나, 엔터티 수준 오류를 검색하려면 null 또는 <see cref="F:System.String.Empty" />입니다.</param>
  718. </member>
  719. <member name="P:System.ComponentModel.INotifyDataErrorInfo.HasErrors">
  720. <summary>엔터티에 유효성 검사 오류가 있는지 여부를 나타내는 값을 가져옵니다. </summary>
  721. <returns>엔터티에 현재 유효성 검사 오류가 있으면 true이고, 그렇지 않으면 false입니다.</returns>
  722. </member>
  723. <member name="T:System.ComponentModel.INotifyPropertyChanged">
  724. <summary>속성 값이 변경되었음을 클라이언트에 알립니다.</summary>
  725. </member>
  726. <member name="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged">
  727. <summary>속성 값이 변경될 때 발생합니다.</summary>
  728. </member>
  729. <member name="T:System.ComponentModel.INotifyPropertyChanging">
  730. <summary>속성 값이 변경되고 있음을 클라이언트에 알립니다.</summary>
  731. </member>
  732. <member name="E:System.ComponentModel.INotifyPropertyChanging.PropertyChanging">
  733. <summary>속성 값이 변경될 때 발생합니다.</summary>
  734. </member>
  735. <member name="T:System.ComponentModel.PropertyChangedEventArgs">
  736. <summary>
  737. <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged" /> 이벤트에 대한 데이터를 제공합니다.</summary>
  738. </member>
  739. <member name="M:System.ComponentModel.PropertyChangedEventArgs.#ctor(System.String)">
  740. <summary>
  741. <see cref="T:System.ComponentModel.PropertyChangedEventArgs" /> 클래스의 새 인스턴스를 초기화합니다.</summary>
  742. <param name="propertyName">변경된 속성의 이름입니다. </param>
  743. </member>
  744. <member name="P:System.ComponentModel.PropertyChangedEventArgs.PropertyName">
  745. <summary>변경된 속성의 이름을 가져옵니다.</summary>
  746. <returns>변경된 속성의 이름입니다.</returns>
  747. </member>
  748. <member name="T:System.ComponentModel.PropertyChangedEventHandler">
  749. <summary>구성 요소에서 속성이 변경될 때 발생하는 <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged" /> 이벤트를 처리할 메서드를 나타냅니다.</summary>
  750. <param name="sender">이벤트 소스입니다. </param>
  751. <param name="e">이벤트 데이터가 들어 있는 <see cref="T:System.ComponentModel.PropertyChangedEventArgs" />입니다. </param>
  752. </member>
  753. <member name="T:System.ComponentModel.PropertyChangingEventArgs">
  754. <summary>
  755. <see cref="E:System.ComponentModel.INotifyPropertyChanging.PropertyChanging" /> 이벤트에 대한 데이터를 제공합니다. </summary>
  756. </member>
  757. <member name="M:System.ComponentModel.PropertyChangingEventArgs.#ctor(System.String)">
  758. <summary>
  759. <see cref="T:System.ComponentModel.PropertyChangingEventArgs" /> 클래스의 새 인스턴스를 초기화합니다. </summary>
  760. <param name="propertyName">값이 변경되고 있는 속성의 이름입니다.</param>
  761. </member>
  762. <member name="P:System.ComponentModel.PropertyChangingEventArgs.PropertyName">
  763. <summary>값이 변경되고 있는 속성의 이름을 가져옵니다.</summary>
  764. <returns>값이 변경되고 있는 속성의 이름입니다.</returns>
  765. </member>
  766. <member name="T:System.ComponentModel.PropertyChangingEventHandler">
  767. <summary>
  768. <see cref="T:System.ComponentModel.INotifyPropertyChanging" /> 인터페이스의 <see cref="E:System.ComponentModel.INotifyPropertyChanging.PropertyChanging" /> 이벤트를 처리할 메서드를 나타냅니다. </summary>
  769. <param name="sender">이벤트 소스입니다. </param>
  770. <param name="e">이벤트 데이터가 들어 있는 <see cref="T:System.ComponentModel.PropertyChangingEventArgs" />입니다.</param>
  771. </member>
  772. <member name="T:System.Windows.Input.ICommand">
  773. <summary>명령을 정의합니다.</summary>
  774. </member>
  775. <member name="M:System.Windows.Input.ICommand.CanExecute(System.Object)">
  776. <summary>명령을 현재 상태에서 실행할 수 있는지를 결정하는 메서드를 정의합니다.</summary>
  777. <returns>이 명령을 실행할 수 있으면 true이고, 그렇지 않으면 false입니다.</returns>
  778. <param name="parameter">명령에 사용된 데이터입니다.명령에서 데이터를 전달할 필요가 없으면 이 개체를 null로 설정할 수 있습니다.</param>
  779. </member>
  780. <member name="E:System.Windows.Input.ICommand.CanExecuteChanged">
  781. <summary>명령을 실행해야 하는지 여부에 영향을 주는 변경이 발생할 때 발생합니다.</summary>
  782. </member>
  783. <member name="M:System.Windows.Input.ICommand.Execute(System.Object)">
  784. <summary>명령이 호출될 때 호출될 메서드를 정의합니다.</summary>
  785. <param name="parameter">명령에 사용된 데이터입니다.명령에서 데이터를 전달할 필요가 없으면 이 개체를 null로 설정할 수 있습니다.</param>
  786. </member>
  787. </members>
  788. </doc>