DialogStateManager.Remove 메서드
정의
오버로드
Remove(KeyValuePair<String,Object>) |
대화 상자 상태 관리자에서 맨 처음 발견 되는 특정 개체를 제거 합니다.Removes the first occurrence of a specific object from the dialog state manager. |
Remove(String) |
지정 된 키를 가진 요소를 대화 상자 상태 관리자에서 제거 합니다.Removes the element with the specified key from the dialog state manager. |
Remove(KeyValuePair<String,Object>)
대화 상자 상태 관리자에서 맨 처음 발견 되는 특정 개체를 제거 합니다.Removes the first occurrence of a specific object from the dialog state manager.
public bool Remove (System.Collections.Generic.KeyValuePair<string,object> item);
abstract member Remove : System.Collections.Generic.KeyValuePair<string, obj> -> bool
override this.Remove : System.Collections.Generic.KeyValuePair<string, obj> -> bool
Public Function Remove (item As KeyValuePair(Of String, Object)) As Boolean
매개 변수
- item
- KeyValuePair<String,Object>
대화 상자 상태 관리자에서 제거할 개체입니다.The object to remove from the dialog state manager.
반환
항목이 대화 상자 상태 관리자에서 성공적으로 제거 되었으면 true
이 고, 그렇지 않으면입니다. 그렇지 않으면 false
입니다.true
if the item was successfully removed from the dialog state manager; otherwise, false
.
구현
설명
이 메서드는 지원되지 않습니다.This method is not supported.
적용 대상
Remove(String)
지정 된 키를 가진 요소를 대화 상자 상태 관리자에서 제거 합니다.Removes the element with the specified key from the dialog state manager.
public bool Remove (string key);
abstract member Remove : string -> bool
override this.Remove : string -> bool
Public Function Remove (key As String) As Boolean
매개 변수
- key
- String
제거할 요소의 키입니다.The key of the element to remove.
반환
요소가 성공적으로 제거 되 면 true
이 고, 그렇지 않으면입니다. 그렇지 않으면 false입니다.true
if the element is succesfully removed; otherwise, false.
구현
설명
이 메서드는 지원되지 않습니다.This method is not supported.