Exemplo n.º 1
0
 internal NavigationLinkScope(ODataWriterCore.WriterState writerState, ODataNavigationLink navLink, bool skipWriting) : base(writerState, navLink, skipWriting)
 {
 }
Exemplo n.º 2
0
 internal Scope(ODataWriterCore.WriterState state, ODataItem item, bool skipWriting)
 {
     this.state = state;
     this.item = item;
     this.skipWriting = skipWriting;
 }
Exemplo n.º 3
0
 internal NavigationLinkScope(ODataWriterCore.NavigationLinkScope other) : base(ODataWriterCore.WriterState.NavigationLinkWithContent, other.Item, other.SkipWriting)
 {
     this.navigationPropertyType = other.navigationPropertyType;
 }