System.Xml.Schema.XmlSchemaObject.OnClear C# (CSharp) Method

OnClear() private method

private OnClear ( XmlSchemaObjectCollection container ) : void
container XmlSchemaObjectCollection
return void
        internal virtual void OnClear(XmlSchemaObjectCollection container) {}

Usage Example

Ejemplo n.º 1
0
 /// <include file='doc\XmlSchemaObjectCollection.uex' path='docs/doc[@for="XmlSchemaObjectCollection.OnClear"]/*' />
 /// <devdoc>
 ///    <para>[To be supplied.]</para>
 /// </devdoc>
 protected override void OnClear()
 {
     if (parent != null)
     {
         parent.OnClear(this);
     }
 }
All Usage Examples Of System.Xml.Schema.XmlSchemaObject::OnClear