コード例 #1
0
ファイル: ODataWriterCore.cs プロジェクト: nickchal/pash
 internal NavigationLinkScope(ODataWriterCore.WriterState writerState, ODataNavigationLink navLink, bool skipWriting) : base(writerState, navLink, skipWriting)
 {
 }
コード例 #2
0
ファイル: ODataWriterCore.cs プロジェクト: nickchal/pash
 internal Scope(ODataWriterCore.WriterState state, ODataItem item, bool skipWriting)
 {
     this.state = state;
     this.item = item;
     this.skipWriting = skipWriting;
 }
コード例 #3
0
ファイル: ODataWriterCore.cs プロジェクト: nickchal/pash
 internal NavigationLinkScope(ODataWriterCore.NavigationLinkScope other) : base(ODataWriterCore.WriterState.NavigationLinkWithContent, other.Item, other.SkipWriting)
 {
     this.navigationPropertyType = other.navigationPropertyType;
 }